Skip to content

Commit

Permalink
Fix stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Jun 4, 2023
1 parent 0e765c1 commit 40b4633
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docsify/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ $important-color: color.complement($brand-primary);
--notice-tip-before-content: '';
--notice-tip-before-background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M100%200L0%20100h100V0z%22%2F%3E%3Cpath%20fill%3D%22%23#{str-slice(inspect($brand-primary), 2)}%22%20d%3D%22M67.11%2032.89A28.87%2028.87%200%200%201%2090%2061.13%2028.86%2028.86%200%200%201%2061.14%2090a28.87%2028.87%200%200%201-28.25-22.89L0%20100h100V0z%22%2F%3E%3Cpath%20fill%3D%22%23#{str-slice(inspect($brand-primary), 2)}%22%20d%3D%22M69.92%2080.74a7.67%207.67%200%200%201-1.38-.28%208.64%208.64%200%200%201-1.22-.46%202.37%202.37%200%200%201-1.16-1%203%203%200%200%201-.35-1.66l.9-22.21-.4-.42-13.74.73-.08%202a10.32%2010.32%200%200%201%201.84.39%205.43%205.43%200%200%201%201.5.65%203.39%203.39%200%200%201%201.07%201.18%203.15%203.15%200%200%201%20.38%201.72l-.66%2016.28a3.45%203.45%200%200%201-.43%201.67%202.42%202.42%200%200%201-1.3%201%204.79%204.79%200%200%201-1.21.28c-.47.06-1%20.1-1.43.14l-.09%202h17.68zM61.58%2049.75a5.76%205.76%200%200%200%203.94-1.5%204.93%204.93%200%200%200%201.78-3.62A4.58%204.58%200%200%200%2065.83%2041%205.29%205.29%200%200%200%2062%2039.49a6%206%200%200%200-1.76.27L56.4%2043.6a5.81%205.81%200%200%200-.15%201%204.55%204.55%200%200%200%201.49%203.62%205.36%205.36%200%200%200%203.84%201.53z%22%2F%3E%3C%2Fsvg%3E');

@media screen and (min-width: 1320px) {
@media screen and (width >= 1320px) {
--base-font-size: 16px;
--sidebar-width: 25vw;
}
Expand Down Expand Up @@ -157,7 +157,7 @@ body * {
}
}

@media (max-width: 47.99em) {
@media (width <= 47.99em) {
flex-direction: column;
align-items: stretch;

Expand All @@ -169,7 +169,7 @@ body * {
}
}

@media (max-width: 30em) {
@media (width <= 30em) {
.table-wrapper {
overflow-x: auto;
overflow-x: overlay;
Expand Down Expand Up @@ -204,15 +204,15 @@ body * {
}
}

@media (min-width: 48em) {
@media (width >= 48em) {
body.close {
.sidebar {
box-shadow: none;
}
}
}

@media (max-width: 47.99em) {
@media (width <= 47.99em) {
body:not(.close) {
.sidebar {
box-shadow: none;
Expand Down

0 comments on commit 40b4633

Please sign in to comment.