Skip to content

Commit

Permalink
css 문법 오류 수정
Browse files Browse the repository at this point in the history
공백 수정
중복된 color 변수 수정
  • Loading branch information
BambooStreet committed Mar 15, 2024
1 parent 3fb29f9 commit a6b405c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions _sass/addon/commons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,6 @@ $btn-mb: 0.5rem;
background: url('/assets/img/sidebar/인상-해돋이.jpg');
background-size: 100% 100%;
background-position: center;

border-right: 1px solid var(--sidebar-border-color);

/* Hide scrollbar for Chrome, Safari and Opera */
Expand Down Expand Up @@ -769,37 +768,38 @@ $btn-mb: 0.5rem;
margin-top: 1.25rem;
margin-bottom: 0.5rem;

/*색상 변경*/
/*color: rgba(254, 254, 254, 0.99);*/
/* 색상 변경 */
/* color: rgba(254, 254, 254, 0.99); */
color: var(--site-title-color);

a {
@extend %clickable-transition;
@extend %sidebar-link-hover;

/*색상 변경*/
/* 색상 변경 */
color: rgba(254, 254, 254, 0.99);

/*color: var(--site-title-color);*/
/* color: var(--site-title-color); */
}
}

/* 서브 타이틀에 대한 색상 크기 등을 변경할 수 있습니다. */
.site-subtitle {
font-size: 95%;
color: var(--site-subtitle-color);

margin-top: 0.25rem;
word-spacing: 1px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

/*색상 변경*/
/* 색상 변경 */
/* color: var(--site-subtitle-color); */
color: rgba(254, 254, 254, 0.99);
}

/* 사이드바의 네비게이션 색상 크기 변경*/
/* 사이드바의 네비게이션 색상 크기 변경 */
ul {
margin-bottom: 2rem;

Expand All @@ -817,7 +817,7 @@ $btn-mb: 0.5rem;
border-radius: 0.75rem;
font-weight: 600;

/*색상 변경*/
/* 색상 변경 */
color: rgba(254, 254, 254, 0.99);

&:hover {
Expand Down

0 comments on commit a6b405c

Please sign in to comment.