Skip to content

Commit

Permalink
refactor(software): use variable for content width
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Henseler <[email protected]>
  • Loading branch information
bromiesTM committed Aug 15, 2024
1 parent 58b175e commit d24e555
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/help/Software.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,15 @@ export default defineComponent({

<style lang="scss" scoped>

#software {
--software-content-width: 40em;
}

.mobile-apps {
display: flex;
justify-content: space-between;
padding-bottom: 2em;
max-width: 39em;
max-width: var(--software-content-width);

.ios, .android {
display: flex;
Expand All @@ -147,7 +151,7 @@ export default defineComponent({
.desktop-apps {
display: flex;
justify-content: space-between;
max-width: 40em;
max-width: var(--software-content-width);
}

.symbol {
Expand Down

0 comments on commit d24e555

Please sign in to comment.