Skip to content

Commit 01ec3c1

Browse files
AchoArnoldCopilot
andcommitted
fix(web): resolve stylelint errors in bulk-messages page
- Add empty line before rule as required by rule-empty-line-before - Use modern color-function notation rgb(0 0 0 / 4%) instead of rgba(0, 0, 0, 0.04) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 2e483d8 commit 01ec3c1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

web/pages/bulk-messages/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@ export default Vue.extend({
273273
.clickable-row {
274274
cursor: pointer;
275275
}
276+
276277
.clickable-row:hover {
277-
background-color: rgba(0, 0, 0, 0.04);
278+
background-color: rgb(0 0 0 / 4%);
278279
}
279280
</style>

0 commit comments

Comments
 (0)