Skip to content

Commit

Permalink
SCSS変数を用いるように変更
Browse files Browse the repository at this point in the history
  • Loading branch information
takusea committed Jul 8, 2024
1 parent b3749f2 commit 005fde4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/components/Dialog/HelpDialog/HelpDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ const openLogDirectory = window.backend.openLogDirectory;
}
.list-label {
padding: 8px 16px;
padding-top: 16px;
padding: vars.$padding-2;
padding-bottom: vars.$padding-1;
color: colors.$display-sub;
}
Expand Down
12 changes: 5 additions & 7 deletions src/components/Dialog/HelpDialog/HelpUpdateInfoSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,13 @@ const props = defineProps<{
}
.info {
background-color: #e9f3e7;
padding: 16px;
border-radius: 16px;
border: 1px solid colors.$border;
background-color: colors.$surface;
padding: vars.$padding-2;
border-radius: vars.$radius-2;
}
.info-title {
font-size: 1.25rem;
font-weight: bold;
line-height: 2;
margin: 0;
@include mixin.headline-2;
}
</style>

0 comments on commit 005fde4

Please sign in to comment.