aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-05-24 21:30:05 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-05-24 21:30:05 +0200
commit5b156cc96ebc12fe3f3a0d7ddf106937f7629fe6 (patch)
tree1b6716915a0e386d9306ef86d2d2590594690f85
parentc973f32651be475a0625a862b9e78529e9db5f99 (diff)
fix: Tweak project card dimensions
-rw-r--r--assets/css/main.css15
1 files changed, 10 insertions, 5 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index d65a35d..60cf133 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -374,11 +374,11 @@ button.back a {
border-radius: 5px;
flex: 0 auto;
padding: 15px;
- width: 320px;
- max-width: 320px;
- min-width: 250px;
- min-height: 230px;
- max-height: 230px;
+ width: 300px;
+ max-width: 300px;
+ min-width: 300px;
+ min-height: 200px;
+ max-height: 200px;
box-sizing: border-box;
margin: 15px;
}
@@ -583,4 +583,9 @@ button.back a {
.date {
display: none;
}
+
+ .project {
+ min-width: 100%;
+ max-width: 100%;
+ }
}