diff options
Diffstat (limited to '_scss')
-rw-r--r-- | _scss/components/elements/_navigation.scss | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/_scss/components/elements/_navigation.scss b/_scss/components/elements/_navigation.scss new file mode 100644 index 0000000..6f10634 --- /dev/null +++ b/_scss/components/elements/_navigation.scss @@ -0,0 +1,17 @@ +.navigation { + padding: 0 .5rem 1rem; + text-align: right; + width: 100%; + + a { + padding: 0 .5rem; + + &:first-child { + padding-left: 0; + } + + &:last-child { + padding-right: 0; + } + } +} |