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

View File

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