diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-20 17:13:15 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-20 17:20:56 +0100 |
| commit | df9e8b1985a0f1c71c0657e72fad008bf437faba (patch) | |
| tree | eeb2a066982a3e81836668ce9a5613cffc023e77 /src/components/Icons/Projects/Projects.module.scss | |
| parent | 8966fde6ff520cfbe74c031c8b2e3a66d298b172 (diff) | |
chore: add projects to main nav
I redesign a little the main nav on small screens so it can takes two
columns when the screen height is low. I change the 2xs breakpoint to
500px instead of 400px.
Diffstat (limited to 'src/components/Icons/Projects/Projects.module.scss')
| -rw-r--r-- | src/components/Icons/Projects/Projects.module.scss | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/components/Icons/Projects/Projects.module.scss b/src/components/Icons/Projects/Projects.module.scss new file mode 100644 index 0000000..3cf939a --- /dev/null +++ b/src/components/Icons/Projects/Projects.module.scss @@ -0,0 +1,40 @@ +@use "@styles/abstracts/functions" as fun; + +.icon { + display: block; + margin: auto; + width: var(--icon-size, #{fun.convert-px(40)}); +} + +.root, +.separator, +.cursor, +.line, +.text { + fill: var(--color-fg); +} + +.stand { + fill: var(--color-primary-lighter); + stroke: var(--color-primary-dark); + + &--top { + stroke-width: 3; + } + + &--bottom { + stroke-width: 2; + } +} + +.screen { + fill: var(--color-bg); + stroke: var(--color-primary-dark); + stroke-width: 3; +} + +.contour { + fill: var(--color-primary-lighter); + stroke: var(--color-primary-dark); + stroke-width: 3; +} |
