2485 Fix a couple of stylelint violations

* commit '334b3fc636025657ac6af2df0b90ec01332c8187':
  Fix a couple of stylelint violations
This commit is contained in:
Artem Baskal 2020-12-24 15:38:40 +03:00
commit 6f50a4c964
5 changed files with 18 additions and 18 deletions

View File

@ -1,9 +1,9 @@
:root { :root {
--yellow-pale: rgba(247, 181, 0, 0.1); --yellow-pale: rgba(247, 181, 0, 0.1);
--green79: #67B279; --green79: #67b279;
--gray-a5: #a5a5a5; --gray-a5: #a5a5a5;
--gray-d8: #d8d8d8; --gray-d8: #d8d8d8;
--gray-f3: #F3F3F3; --gray-f3: #f3f3f3;
--font-family-monospace: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace; --font-family-monospace: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
} }

View File

@ -34,7 +34,7 @@
align-items: center; align-items: center;
} }
.dashboard-title__button{ .dashboard-title__button {
margin: 0 0.5rem; margin: 0 0.5rem;
} }
@ -44,7 +44,7 @@
align-items: flex-start; align-items: flex-start;
} }
.dashboard-title__button{ .dashboard-title__button {
margin: 0.5rem 0; margin: 0.5rem 0;
display: block; display: block;
} }

View File

@ -70,7 +70,7 @@
} }
.grid .key-colon:nth-child(odd)::after { .grid .key-colon:nth-child(odd)::after {
content: ':'; content: ":";
} }
.grid__one-row { .grid__one-row {
@ -95,7 +95,7 @@
} }
.title--border:before { .title--border:before {
content: ''; content: "";
position: absolute; position: absolute;
left: 0; left: 0;
border-top: 0.5px solid var(--gray-d8) !important; border-top: 0.5px solid var(--gray-d8) !important;

View File

@ -9,21 +9,18 @@
--size-response: 150; --size-response: 150;
--size-client: 123; --size-client: 123;
--gray-216: rgba(216, 216, 216, 0.23); --gray-216: rgba(216, 216, 216, 0.23);
--gray-4d: #4D4D4D; --gray-4d: #4d4d4d;
--gray-f3: #F3F3F3; --gray-f3: #f3f3f3;
--gray-8: #888; --gray-8: #888;
--gray-3: #333; --gray-3: #333;
--danger: #DF3812; --danger: #df3812;
--white80: rgba(255, 255, 255, 0.8); --white80: rgba(255, 255, 255, 0.8);
--btn-block: #c23814;
--btn-block: #C23814; --btn-block-disabled: #e3b3a6;
--btn-block-disabled: #E3B3A6; --btn-block-active: #a62200;
--btn-block-active: #A62200;
--btn-unblock: #888888; --btn-unblock: #888888;
--btn-unblock-disabled: #D8D8D8; --btn-unblock-disabled: #d8d8d8;
--btn-unblock-active: #4D4D4D; --btn-unblock-active: #4d4d4d;
--option-border-radius: 4px; --option-border-radius: 4px;
} }
@ -87,7 +84,7 @@
} }
.custom-select__arrow--left { .custom-select__arrow--left {
background: var(--white) url('../ui/svg/chevron-down.svg') no-repeat; background: var(--white) url("../ui/svg/chevron-down.svg") no-repeat;
background-position: 5px 9px; background-position: 5px 9px;
background-size: 22px; background-size: 22px;
} }

View File

@ -6,18 +6,21 @@
.icon--24 { .icon--24 {
--size: 1.5rem; --size: 1.5rem;
width: var(--size); width: var(--size);
height: var(--size); height: var(--size);
} }
.icon--20 { .icon--20 {
--size: 1.25rem; --size: 1.25rem;
width: var(--size); width: var(--size);
height: var(--size); height: var(--size);
} }
.icon--18 { .icon--18 {
--size: 1.125rem; --size: 1.125rem;
width: var(--size); width: var(--size);
height: var(--size); height: var(--size);
} }