ブランドアイコンを今日の日付にするCSS
https://gyazo.com/731f2ade9d7d9aa7108a2fdda0d208c4
code:style.css
.navbar-brand::before {
content: '';
width: 44px;
height: 44px;
position: absolute;
background-size: cover;
background-position: center;
border-radius: 6px;
}
@media (prefers-color-scheme: dark) {
.navbar-brand::before {
}
}
@media (prefers-color-scheme: light) {
.navbar-brand::before {
}
}
元ネタ
UserCSS.icon