diff options
author | Daniil Baturin <daniil@vyos.io> | 2021-01-22 20:32:09 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 20:32:09 +0700 |
commit | 218741f8ce959de0424a5f5f94dac17e3c7324d9 (patch) | |
tree | 96df1daeac0d02fb5ad7e1cf70050916a765aaa9 /sass/main.sass | |
parent | 4d0294c643cd62e3d746f41b716a85ae5258da38 (diff) | |
parent | 3fa2f328a51e9c8cee05c52bc0c50aa738e4a865 (diff) | |
download | community.vyos.net-218741f8ce959de0424a5f5f94dac17e3c7324d9.tar.gz community.vyos.net-218741f8ce959de0424a5f5f94dac17e3c7324d9.zip |
Merge pull request #4 from Andrii-Moshenskyi/main
Fix the bug of styling lists
Diffstat (limited to 'sass/main.sass')
-rw-r--r-- | sass/main.sass | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sass/main.sass b/sass/main.sass index ece16ef..7c5ba66 100644 --- a/sass/main.sass +++ b/sass/main.sass @@ -70,23 +70,25 @@ div.container +resp(esm)
margin: 9px 0
ul
+ list-style: none
+resp(sm)
padding-left: 25px
+resp(esm)
padding-left: 15px
li
- list-style: none
- display: flex
- align-items: center
- margin: 12px 0
+ padding-left: 25px
+ margin: 16px 0
line-height: 150%
+resp(esm)
font-size: 14px
- margin: 10px 0
+ margin: 13px 0
&:before
- margin-top: 4px
- margin-right: 10px
+ position: absolute
+ margin-top: 1px
+ margin-left: -25px
content: url('../img/global/list-element.svg')
+ +resp(esm)
+ margin-top: 2px
a
color: $dark-orange
&:hover
|