Skip to content

Commit

Permalink
feat(files): Allow rewrite css var --row-height from custom theming
Browse files Browse the repository at this point in the history
Signed-off-by: Tatjana Kaschperko Lindt <[email protected]>
  • Loading branch information
tanyaka committed Dec 19, 2024
1 parent 0c282af commit a999bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/src/components/FilesListVirtual.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export default defineComponent({

<style scoped lang="scss">
.files-list {
--row-height: 55px;
--row-height: var(--list-row-height, 55px);
--cell-margin: 14px;

--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);
Expand Down

0 comments on commit a999bfe

Please sign in to comment.