Browse Source

flat links init

alexlcdee 8 years ago
parent
commit
24cb98dd79
3 changed files with 14 additions and 6 deletions
  1. 6 3
      src/files/css/main.css
  2. 0 0
      src/files/css/main.css.map
  3. 8 3
      src/files/scss/_flat-links.scss

+ 6 - 3
src/files/css/main.css

@@ -10120,21 +10120,24 @@ footer .copyright .logo {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
-  align-content: space-between; }
+  justify-content: space-between; }
 .flat-links__item {
+  padding: 5px;
   height: 90px;
   width: 47%;
   margin-bottom: 10px;
-  padding: 0;
   background: #d7d7d7;
   display: flex;
   flex-direction: row;
-  align-content: space-between;
+  justify-content: space-between;
   vertical-align: middle; }
   .flat-links__item:hover {
     text-decoration: none;
     background: #004d7b; }
+  .flat-links__item-icon {
+    display: block; }
   .flat-links__item-description {
+    display: flex;
     color: #fff;
     font-weight: 700;
     font-size: 15px; }

File diff suppressed because it is too large
+ 0 - 0
src/files/css/main.css.map


+ 8 - 3
src/files/scss/_flat-links.scss

@@ -5,18 +5,18 @@
         display: flex;
         flex-direction: row;
         flex-wrap: wrap;
-        align-content: space-between;
+        justify-content: space-between;
     }
 
     &__item {
+        padding: 5px;
         height: 90px;
         width: 47%;
         margin-bottom: 10px;
-        padding: 0;
         background: #d7d7d7;
         display: flex;
         flex-direction: row;
-        align-content: space-between;
+        justify-content: space-between;
         vertical-align: middle;
 
         &:hover {
@@ -24,7 +24,12 @@
             background: #004d7b;
         }
 
+        &-icon {
+            display: block;
+        }
+
         &-description {
+            display: flex;
             color: #fff;
             font-weight: 700;
             font-size: 15px;

Some files were not shown because too many files changed in this diff