mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 18:57:31 +03:00
26 lines
566 B
SCSS
26 lines
566 B
SCSS
@import '../../../src/utils/mixins/vertical-align';
|
|
@import '../../../src/utils/base';
|
|
|
|
.icon-input-container {
|
|
position: relative;
|
|
}
|
|
|
|
.icon-input-container__input {
|
|
padding-right: 35px !important;
|
|
}
|
|
|
|
.icon-input-container__input:not(:disabled) {
|
|
background-color: var(--primary-color) !important;
|
|
}
|
|
|
|
.card .icon-input-container__input:not(:disabled),
|
|
.dropdown .icon-input-container__input:not(:disabled) {
|
|
background-color: var(--input-color) !important;
|
|
}
|
|
|
|
.icon-input-container__icon {
|
|
@include vertical-align();
|
|
|
|
right: .75rem;
|
|
cursor: pointer;
|
|
}
|