Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
41 lines
673 B
Plaintext
41 lines
673 B
Plaintext
@import '../../scss/styles';
|
|
|
|
@layer payload-default {
|
|
[dir='rtl'] .search-filter {
|
|
svg {
|
|
right: base(0.5);
|
|
left: 0;
|
|
}
|
|
&__input {
|
|
padding-right: base(2);
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
.search-filter {
|
|
position: relative;
|
|
|
|
svg {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
left: base(0.5);
|
|
}
|
|
|
|
&__input {
|
|
@include formInput;
|
|
height: auto;
|
|
padding: 0;
|
|
box-shadow: none;
|
|
background-color: var(--theme-elevation-50);
|
|
border: none;
|
|
|
|
&:not(:disabled) {
|
|
&:hover,
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|