Skip to content

Commit

Permalink
Update primary button in post and comment
Browse files Browse the repository at this point in the history
  • Loading branch information
danon committed Dec 9, 2024
1 parent 80d17f0 commit 0add513
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/feature/lookAndFeel/lookAndFeel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ body {
.look-and-feel-legacy {
.neon-primary-button {
@include theme.dark {
color: #1a1a1a;
color: #1a1a1a !important; // overrides .btn:hover
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/forum/comment-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<p class="text-muted float-start">
Pozostało <strong>{{ maxLength - comment.text.length }}</strong> znaków
</p>
<vue-button :disabled="isProcessing" @click="saveComment" class="btn btn-sm btn-primary float-end" title="Kliknij, aby wysłać (Ctrl+Enter)">
<vue-button :disabled="isProcessing" @click="saveComment" class="btn btn-sm btn-primary neon-primary-button float-end" title="Kliknij, aby wysłać (Ctrl+Enter)">
<template v-if="newComment">Komentuj</template>
<template v-else>Zapisz</template>
</vue-button>
Expand Down

0 comments on commit 0add513

Please sign in to comment.