Remove "application.scss"

This commit is contained in:
danidfra 2024-11-14 17:27:54 -03:00
parent 834f8305df
commit ee0ed09468
2 changed files with 0 additions and 45 deletions

View File

@ -7,5 +7,4 @@
// COMPONENTS
@use 'components/compose-form';
@use 'components/status';
@use 'components/search';
@use 'components/icon';

View File

@ -1,44 +0,0 @@
.search {
position: relative;
}
.search__icon {
&::-moz-focus-inner {
border: 0;
}
&::-moz-focus-inner,
&:focus {
outline: 0 !important;
}
.svg-icon {
@apply right-4 rtl:left-4 rtl:right-auto text-gray-400;
font-size: 16px;
cursor: default;
display: inline-block;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 2;
width: 18px;
height: 18px;
opacity: 0;
pointer-events: none;
&.active {
pointer-events: auto;
opacity: 1;
}
}
.svg-icon--search.active {
pointer-events: none;
}
.svg-icon--backspace {
cursor: pointer;
width: 22px;
height: 22px;
}
}