aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-25 16:31:20 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-25 16:31:20 +0100
commit4aedfb4f57a55f39909b96ce86493daa39f3b9f0 (patch)
tree6ee6a8d90cd965f3cae10816ad78c8dd87302d5d /src/components
parentf6e0e444820f67f212e362c54816df5d0e4d4cf0 (diff)
chore: adjust colors and grid layout
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Widgets/ToC/ToC.module.scss31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/components/Widgets/ToC/ToC.module.scss b/src/components/Widgets/ToC/ToC.module.scss
index a863a34..c2e7f97 100644
--- a/src/components/Widgets/ToC/ToC.module.scss
+++ b/src/components/Widgets/ToC/ToC.module.scss
@@ -37,34 +37,3 @@
text-decoration-thickness: 0;
}
}
-
-.list {
- width: 100%;
- margin: 0;
- counter-reset: link;
-
- @include mix.media("screen") {
- @include mix.dimensions("lg") {
- font-size: var(--font-size-sm);
- font-weight: 500;
- }
- }
-
- > .item .link {
- counter-increment: link;
-
- &::before {
- content: counters(link, ".") ". ";
- color: var(--color-secondary);
- padding-right: var(--spacing-2xs);
- }
- }
-
- .item .item .link::before {
- padding-left: var(--spacing-sm);
- }
-
- .item .item .item .link::before {
- padding-left: var(--spacing-lg);
- }
-}