summaryrefslogtreecommitdiff
path: root/examples/portfolio/src/components/Nav/styles.module.scss
diff options
context:
space:
mode:
authorGravatar Jonathan Neal <jonathantneal@hotmail.com> 2021-12-22 16:11:05 -0500
committerGravatar GitHub <noreply@github.com> 2021-12-22 16:11:05 -0500
commit6ddd7678ffb6598ae6e263706813cb5e94535f02 (patch)
treed4b45f7590b59c3574bd6593b17d8066f71007c6 /examples/portfolio/src/components/Nav/styles.module.scss
parent305ce4182fbe89abcfb88008ddce178bd8863b6a (diff)
downloadastro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.gz
astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.zst
astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.zip
Use accessible indentation (#2253)
Diffstat (limited to 'examples/portfolio/src/components/Nav/styles.module.scss')
-rw-r--r--examples/portfolio/src/components/Nav/styles.module.scss90
1 files changed, 45 insertions, 45 deletions
diff --git a/examples/portfolio/src/components/Nav/styles.module.scss b/examples/portfolio/src/components/Nav/styles.module.scss
index d39a65a5b..ecbe5585e 100644
--- a/examples/portfolio/src/components/Nav/styles.module.scss
+++ b/examples/portfolio/src/components/Nav/styles.module.scss
@@ -1,65 +1,65 @@
.nav {
- display: flex;
- align-items: center;
- padding-top: 1rem;
- padding-right: 2rem;
- padding-bottom: 1rem;
- padding-left: 2rem;
+ display: flex;
+ align-items: center;
+ padding-top: 1rem;
+ padding-right: 2rem;
+ padding-bottom: 1rem;
+ padding-left: 2rem;
}
.logolink {
- display: block;
- color: var(--t-fg);
- text-decoration: none;
+ display: block;
+ color: var(--t-fg);
+ text-decoration: none;
}
.link {
- color: var(--t-subdue);
- display: block;
- margin-left: 1rem;
- text-decoration: none;
- font-size: var(--f-d1);
- text-transform: uppercase;
- padding-top: 0.75em;
- padding-bottom: 0.75em;
+ color: var(--t-subdue);
+ display: block;
+ margin-left: 1rem;
+ text-decoration: none;
+ font-size: var(--f-d1);
+ text-transform: uppercase;
+ padding-top: 0.75em;
+ padding-bottom: 0.75em;
- &:focus,
- &:hover {
- color: var(--t-active);
- }
+ &:focus,
+ &:hover {
+ color: var(--t-active);
+ }
}
.monogram {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 2em;
- height: 2em;
- margin-right: 0.5rem;
- color: var(--c-black);
- font-weight: 900;
- letter-spacing: -0.125rem;
- border: 3px solid currentColor;
- border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 2em;
+ height: 2em;
+ margin-right: 0.5rem;
+ color: var(--c-black);
+ font-weight: 900;
+ letter-spacing: -0.125rem;
+ border: 3px solid currentColor;
+ border-radius: 50%;
}
.social {
- display: block;
- margin-left: auto;
+ display: block;
+ margin-left: auto;
- + .social {
- margin-left: 0.75rem;
- }
+ + .social {
+ margin-left: 0.75rem;
+ }
}
.socialicon {
- display: block;
- width: 1.25rem;
- height: 1.25rem;
- fill: var(--t-subdue);
- transition: fill linear 150ms;
+ display: block;
+ width: 1.25rem;
+ height: 1.25rem;
+ fill: var(--t-subdue);
+ transition: fill linear 150ms;
- &:hover {
- fill: var(--t-active);
- }
+ &:hover {
+ fill: var(--t-active);
+ }
}