mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
fixed search input label text
This commit is contained in:
parent
b45a3c5823
commit
4ab2c7f885
2 changed files with 7 additions and 4 deletions
|
@ -72,12 +72,15 @@
|
||||||
padding: $gap;
|
padding: $gap;
|
||||||
|
|
||||||
@include outer_shadow();
|
@include outer_shadow();
|
||||||
|
|
||||||
|
:global(.input_title) {
|
||||||
|
color: lighten($content_bg, 10%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.search_icon {
|
.search_icon {
|
||||||
fill: white;
|
fill: lighten($content_bg, 8%);
|
||||||
opacity: 0.1;
|
stroke: lighten($content_bg, 8%);
|
||||||
stroke: white;
|
|
||||||
stroke-width: 0.5;
|
stroke-width: 0.5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
touch-action: none;
|
touch-action: none;
|
||||||
|
|
|
@ -75,7 +75,7 @@ const InputText: FC<IInputTextProps> = ({
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{title && (
|
{title && (
|
||||||
<div className={styles.title}>
|
<div className={classNames(styles.title, 'input_title')}>
|
||||||
<span>{title}</span>
|
<span>{title}</span>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue