Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update grid item size and spacing
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Apr 13, 2022
commit b271765eea003795d40484aa32b3a98dc12052bf
4 changes: 2 additions & 2 deletions src/components/ExportSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ export default {
<style lang="scss" scoped>
.section__grid {
display: grid;
gap: 10px 20px;
gap: 40px;
grid-auto-flow: row;
grid-template-columns: repeat(auto-fit, 400px);
grid-template-columns: repeat(auto-fit, 300px);
margin-bottom: 40px;

.section__description {
Expand Down
4 changes: 2 additions & 2 deletions src/views/Personal/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
-->

<template>
<div>
<section>
<ExportSection :status="status"
:migrators="migrators"
@refresh-status="onRefreshStatus" />
<ImportSection :status="status"
@refresh-status="onRefreshStatus" />
</div>
</section>
</template>

<script>
Expand Down