Skip to content

Commit

Permalink
style: adjust spacing to match mockup
Browse files Browse the repository at this point in the history
The native `section` has some spacing styles that do not align to our expectations.
I have therefore adjusted it temporarily until we tackle the general spacing

Signed-off-by: Kai Henseler <[email protected]>
  • Loading branch information
bromiesTM committed Sep 26, 2024
1 parent e78fd5e commit e78ff3c
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ content {
}

h2 {
padding-top: 25px;
padding-left: 30px;
margin-bottom: 0;
font-weight: 700;
font-size: 24px;
}
Expand Down
7 changes: 7 additions & 0 deletions src/components/account/LanguageSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,10 @@ export default {
},
}
</script>

<style scoped>
.section {
padding-top: 16px;
margin-bottom: 0;
}
</style>
5 changes: 5 additions & 0 deletions src/components/account/Quota.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,9 @@ export default {
gap: 8px 0;
}
}

.section {
padding-top: 16px;
margin-bottom: 0;
}
</style>
5 changes: 5 additions & 0 deletions src/components/files/WebDavUrl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,9 @@ ol {
p#webdav-info {
margin: 10px 0;
}

.section {
padding-top: 16px;
margin-bottom: 0;
}
</style>
5 changes: 5 additions & 0 deletions src/components/help/Software.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ export default defineComponent({
vertical-align: middle;
}

.section {
padding-top: 16px;
margin-bottom: 0;
}

@media screen and (min-width: calc(variables.$breakpoint-mobile / 2)) {
.desktop-app {
max-width: calc(var(--software-content-width) / 2);
Expand Down
7 changes: 7 additions & 0 deletions src/components/security/AuthTokenSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,10 @@ export default defineComponent({
},
})
</script>

<style scoped>
.section {
padding-top: 16px;
margin-bottom: 0;
}
</style>

0 comments on commit e78ff3c

Please sign in to comment.