1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 16:36:47 +02:00

Use css variables for badge (#29)

This commit is contained in:
Sami Mazouz
2021-08-16 10:18:46 +01:00
committed by GitHub
parent 6be9cb86c7
commit 711793c470

View File

@@ -1,7 +1,11 @@
:root {
--lock-color: #888;
}
.DiscussionLockedPost {
.EventPost-icon,
.EventPost-info,
.EventPost-info a {
color: #888;
color: var(--lock-color);
}
}