Skip to content

Commit e34693d

Browse files
committed
Update compiled CSS
1 parent 5d5d929 commit e34693d

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

main.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*******************************/
55
:root {
66
--ls-font-family: "Inter";
7-
--ls-main-content-max-width: 1000px;
8-
--ls-main-content-max-width-wide: 1280px;
7+
--ls-main-content-max-width: 1000px; /* default: 810px */
8+
--ls-main-content-max-width-wide: 1280px; /* default: 1280px */
99
--ls-page-text-size: 1em;
1010
--ls-page-title-size: 26px;
1111
--ls-tag-text-opacity: 0.8;
@@ -282,7 +282,7 @@ html[data-theme=light] {
282282
background-color: var(--ct-color-level-1) !important;
283283
}
284284

285-
@media screen and (max-width: 992px) {
285+
@media screen and (max-width: 600px) {
286286
#main-content-container .cp__sidebar-main-content > .mx-auto {
287287
padding: 10px 5px 10px 10px;
288288
}

main2.css

+11-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*******************************/
55
:root {
66
--ls-font-family: "Inter";
7-
--ls-main-content-max-width: 1000px;
8-
--ls-main-content-max-width-wide: 1280px;
7+
--ls-main-content-max-width: 900px; /* default: 810px */
8+
--ls-main-content-max-width-wide: 1280px; /* default: 1280px */
99
--ls-page-text-size: 1em;
1010
--ls-page-title-size: 26px;
1111
--ls-tag-text-opacity: 0.8;
@@ -271,7 +271,7 @@ html[data-theme=light] {
271271
background-color: var(--ct-color-level-1) !important;
272272
}
273273

274-
@media screen and (max-width: 992px) {
274+
@media screen and (max-width: 600px) {
275275
#main-content-container .cp__sidebar-main-content > .mx-auto {
276276
padding: 10px 5px 10px 10px;
277277
}
@@ -1531,3 +1531,11 @@ a.tooltip-priority {
15311531
.page-property-key[data-ref|=plugin]::before {
15321532
content: "\ebd9";
15331533
}
1534+
1535+
/* quick fix: hr border-color controlled by
1536+
* --lx-gray-05: var(--cp-darker); // --ls-menu-hover-color
1537+
* this would mean same as bg color :(
1538+
*/
1539+
.content hr {
1540+
border-color: #32363e;
1541+
}

0 commit comments

Comments
 (0)