mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
Fix overflow of tabular to maintain padding
This commit is contained in:
@@ -64,6 +64,7 @@
|
||||
<v-table
|
||||
v-model="_selection"
|
||||
v-if="loading || itemCount > 0"
|
||||
class="table"
|
||||
ref="table"
|
||||
fixed-header
|
||||
:show-select="readonly ? false : selection !== undefined"
|
||||
@@ -527,9 +528,11 @@ export default defineComponent({
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.layout-tabular {
|
||||
padding: var(--content-padding);
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
padding-left: var(--content-padding);
|
||||
|
||||
::v-deep tr {
|
||||
margin-right: var(--content-padding);
|
||||
}
|
||||
}
|
||||
|
||||
.v-table {
|
||||
|
||||
Reference in New Issue
Block a user