aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/PostMeta/PostMeta.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-01 22:08:56 +0100
committerArmand Philippot <git@armandphilippot.com>2022-03-01 22:08:56 +0100
commit80d54805e26a6a6971c5ad214b02456dcc226628 (patch)
tree9b81e0cd3ff881b2cbeb81f9f96b52b510d67646 /src/components/PostMeta/PostMeta.module.scss
parent99ae0a9d3a923ca1e998dc9b504dad607fdfd768 (diff)
parent8bd9784acdee6871ad70e86d0d7120299bf76969 (diff)
refactor: various refactoring
Improve maintenance (meta splitting) and try to improve performance (dynamic imports).
Diffstat (limited to 'src/components/PostMeta/PostMeta.module.scss')
-rw-r--r--src/components/PostMeta/PostMeta.module.scss21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/components/PostMeta/PostMeta.module.scss b/src/components/PostMeta/PostMeta.module.scss
index 6f8e1c2..d438635 100644
--- a/src/components/PostMeta/PostMeta.module.scss
+++ b/src/components/PostMeta/PostMeta.module.scss
@@ -18,7 +18,7 @@
}
}
- &--single {
+ &--article {
flex-flow: column wrap;
margin: var(--spacing-sm) 0 0;
@@ -27,24 +27,5 @@
font-size: var(--font-size-sm);
}
}
-
- .item {
- display: flex;
- flex-flow: row wrap;
- }
-
- .term {
- margin-right: var(--spacing-2xs);
- color: var(--color-fg-light);
- }
-
- .description {
- &:not(:first-of-type) {
- &::before {
- content: "/";
- margin: 0 var(--spacing-2xs);
- }
- }
- }
}
}