fix(ui): style sidebar search

This commit is contained in:
ArneBo 2024-12-17 02:45:24 +01:00 committed by upsiflu
parent 1ca7f41ac2
commit a0a97e2bca
2 changed files with 22 additions and 9 deletions

View File

@ -7,6 +7,9 @@
&::placeholder { &::placeholder {
color: var(--fw-placeholder-color); color: var(--fw-placeholder-color);
} }
@include dark-theme {
color: var(--fw-gray-300);
}
} }
.prefix, .prefix,
@ -39,7 +42,7 @@
} }
&:focus-within { &:focus-within {
--fw-border-color: var(--fw-primary); --fw-border-color: var(--fw-gray-600);
--fw-bg-color: var(--fw-gray-800); --fw-bg-color: var(--fw-gray-800);
} }
} }

View File

@ -148,11 +148,6 @@ const uploads = useUploadsStore()
</template> </template>
<style module lang="scss"> <style module lang="scss">
.logo {
height: 40px;
width: 40px;
margin: 20px;
}
.sidebar { .sidebar {
height: 100%; height: 100%;
@ -168,6 +163,12 @@ const uploads = useUploadsStore()
> .header-wrapper { > .header-wrapper {
display: flex; display: flex;
.logo {
height: 40px;
width: 40px;
margin: 20px;
}
} }
.quick-actions { .quick-actions {
@ -228,7 +229,6 @@ const uploads = useUploadsStore()
} }
} }
} }
.avatar, .avatar,
.logo { .logo {
height: 30px; height: 30px;
@ -257,8 +257,18 @@ const uploads = useUploadsStore()
} }
} }
> .search { .search {
padding: 0 16px 23px; padding: 0 4px;
margin-bottom: 40px;
input {
height: 50px;
&:focus {
border-color: var(--fw-gray-100);
}
}
} }
> h3 { > h3 {