fix: css variable for input height

This commit is contained in:
prssanna 2020-12-15 14:01:35 +05:30
parent 60850aa64b
commit 36e89bc08d
2 changed files with 5 additions and 2 deletions

View file

@ -219,10 +219,13 @@
--page-head-height: 75px;
--page-bottom-margin: 60px;
// input
--input-height: $input-height;
// timeline
--timeline-item-icon-size: 34px;
--timeline-item-left-margin: var(--margin-xl);
--timeline-item-bottom-margin: var(--margin-sm);
--timeline-content-max-width: 700px;
--timeline-left-padding: calc(var(--padding-xl) + var(--timeline-item-icon-size)/2)
--timeline-left-padding: calc(var(--padding-xl) + var(--timeline-item-icon-size)/2);
}

View file

@ -85,7 +85,7 @@
}
.like-disabled-input {
min-height: $input-height;
min-height: var(--input-height);
border-radius: $border-radius;
font-weight: 400;
padding: 8px 12px;