styles changes

This commit is contained in:
nquidox 2025-09-25 20:40:11 +03:00
parent 8351c63e57
commit 033e54085d
7 changed files with 74 additions and 78 deletions

View file

@ -57,44 +57,5 @@ watch(localValue, (newVal) => {
</template>
<style scoped>
.toolbar {
display: flex;
align-items: center;
gap: 16px;
padding: 16px;
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0;
border-radius: 8px;
flex-wrap: wrap;
}
.toolbar-item {
flex-shrink: 0;
}
.search-wrapper {
flex-grow: 1;
min-width: 200px;
}
.selector {
min-width: 220px;
}
@media (max-width: 768px) {
.selector {
flex-basis: 100%;
margin-left: auto;
}
}
@media (max-width: 768px) {
.search-wrapper {
flex-basis: 100%;
}
}
:deep(.mobile-full-width) {
width: 100%;
}
</style>