diff options
| author | Valentin Popov <info@valentineus.link> | 2018-04-24 16:59:01 +0300 | 
|---|---|---|
| committer | Valentin Popov <info@valentineus.link> | 2018-04-24 16:59:01 +0300 | 
| commit | 4e59463ab8862e8bdfa21ce01fb42127ce102c70 (patch) | |
| tree | 5121e14573b9cc840f8cab9b8100118b281d73d2 /_scss/components/elements | |
| parent | f77459dd25e45032fabff56a7f2af5fdb95420fd (diff) | |
| download | popov.link-4e59463ab8862e8bdfa21ce01fb42127ce102c70.tar.xz popov.link-4e59463ab8862e8bdfa21ce01fb42127ce102c70.zip | |
Add style navigation
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/components/elements')
| -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; +    } +  } +} | 
