소스 검색

flat links init

alexlcdee 8 년 전
부모
커밋
24cb98dd79
3개의 변경된 파일14개의 추가작업 그리고 6개의 파일을 삭제
  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; }

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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;

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.