소스 검색

try change link decoration

alexlcdee 8 년 전
부모
커밋
f04fcbd123
3개의 변경된 파일9개의 추가작업 그리고 6개의 파일을 삭제
  1. 2 2
      src/files/css/main.css
  2. 0 0
      src/files/css/main.css.map
  3. 7 4
      src/files/scss/main.scss

+ 2 - 2
src/files/css/main.css

@@ -6568,9 +6568,9 @@ button.close {
   .hidden-print {
     display: none !important; } }
 /*# sourceMappingURL=bootstrap.css.map */
-p > a {
+p a {
   text-decoration: underline; }
-  p > a:hover {
+  p a:hover {
     text-decoration: none; }
 
 /*MAIN PAGE*/

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
src/files/css/main.css.map


+ 7 - 4
src/files/scss/main.scss

@@ -3,10 +3,12 @@
 @import "mixins";
 @import "bootstrap";
 
-p > a {
-    text-decoration: underline;
-    &:hover {
-        text-decoration: none;
+p {
+    a {
+        text-decoration: underline;
+        &:hover {
+            text-decoration: none;
+        }
     }
 }
 
@@ -42,6 +44,7 @@ body {
     position: relative;
     padding-top: 100%;
 }
+
 .organization-info__map {
     position: absolute;
     top: 0;

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