]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
fix card border radius when it's the only child 239/head
authorAzri Kahar <42867097+azrikahar@users.noreply.github.com>
Thu, 24 Jun 2021 01:05:13 +0000 (09:05 +0800)
committerGitHub <noreply@github.com>
Thu, 24 Jun 2021 01:05:13 +0000 (09:05 +0800)
src/assets/app.scss

index 48c60aec329a84d3e6a5b5baa7cc681aa9c7a0fc..924b85a6bc4dabdbb83d87e82180e1c1f6cedf01 100644 (file)
@@ -224,7 +224,6 @@ body {
   }
 
   .card {
-    border-radius: 5px;
     border: none;
     box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
     transition: cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
@@ -260,11 +259,13 @@ body {
     }
 
     .column div:first-of-type .card {
-      border-radius: 5px 5px 0 0;
+      border-top-left-radius: 0.25rem;
+      border-top-right-radius: 0.25rem;
     }
 
     .column div:last-child .card {
-      border-radius: 0 0 5px 5px;
+      border-bottom-left-radius: 0.25rem;
+      border-bottom-right-radius: 0.25rem;
     }
   }
 
@@ -348,4 +349,4 @@ body {
 
 .group-logo {
   float: left;
-}
\ No newline at end of file
+}