mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 12:28:51 +02:00
Resize buttons to fit.
This commit is contained in:
parent
318faa3119
commit
d5cbcbffcc
2 changed files with 7 additions and 3 deletions
|
@ -198,7 +198,7 @@ getIcon<!--
|
|||
{{item.name}}
|
||||
</v-list-item>
|
||||
</template>
|
||||
<v-btn medium color="primary" class="mx-1 my-1"
|
||||
<v-btn medium color="primary" class="mx-1 my-1 folder-button"
|
||||
@click="
|
||||
editFolderDialog.show = true;
|
||||
editFolderDialog.uuid = item.uuid;
|
||||
|
@ -207,12 +207,12 @@ getIcon<!--
|
|||
>
|
||||
Edit Folder
|
||||
</v-btn>
|
||||
<v-btn medium color="red" class="mx-1 my-1"
|
||||
<v-btn medium color="red" class="mx-1 my-1 folder-button"
|
||||
@click="removeFolderDialog.show = true; removeFolderDialog.uuid = item.uuid;"
|
||||
>
|
||||
Delete Folder
|
||||
</v-btn>
|
||||
<v-btn medium color="purple" class="mx-1 my-1"
|
||||
<v-btn medium color="purple" class="mx-1 my-1 folder-button"
|
||||
@click="sortFolder(item.uuid);"
|
||||
>
|
||||
Sort Folder
|
||||
|
|
|
@ -29,6 +29,10 @@
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.top-level-folder .folder-button {
|
||||
font-size: 0.795rem !important;
|
||||
}
|
||||
|
||||
/* Second Level */
|
||||
|
||||
.v-list-group .column-item {
|
||||
|
|
Loading…
Reference in a new issue