Fixed stylelint errors

This commit is contained in:
Taloth Saldono 2020-02-11 21:41:16 +01:00
parent b601c8bcfe
commit cde5a6d1a4
2 changed files with 6 additions and 6 deletions

View File

@ -19,18 +19,18 @@
.footNote { .footNote {
color: $helpTextColor;
display: flex; display: flex;
color: $helpTextColor;
.icon { .icon {
padding: 2px;
margin-top: 3px; margin-top: 3px;
margin-right: 5px; margin-right: 5px;
padding: 2px;
} }
code { code {
background-color: #f7f7f7; padding: 0 1px;
border: 1px solid $borderColor; border: 1px solid $borderColor;
padding: 0px 1px; background-color: #f7f7f7;
} }
} }

View File

@ -34,14 +34,14 @@
.example { .example {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between;
flex: 0 0 50%; flex: 0 0 50%;
padding: 6px 16px; padding: 6px 16px;
background-color: #ddd; background-color: #ddd;
justify-content: space-between;
.footNote { .footNote {
color: #aaa;
padding: 2px; padding: 2px;
color: #aaa;
} }
} }