1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 04:42:24 +03:00

Removed explicit margin at main toolbar search bar

This commit is contained in:
Avele 2019-07-08 16:02:58 +04:00
parent 52e6d4fb6c
commit a4753c0bd7

View File

@ -2,7 +2,7 @@
<v-text-field
dark
solo
class="toollbar-search"
class="toolbar-search"
label="Search"
:value="searchInput"
@input="setSearchInput"
@ -32,14 +32,10 @@ export default class SearchField extends Vue {
</script>
<style scoped>
.toollbar-search {
margin-right: 15px;
}
.toollbar-search >>> div {
.toolbar-search >>> div {
margin-bottom: 0 !important;
}
.toollbar-search >>> label {
.toolbar-search >>> label {
font-size: 18px;
}
</style>