[PR] [Feature] 590 - Daggerheart Menu (#1007)

* Added menu with refresh tools

* Replaced menu icon
This commit is contained in:
WBHarry 2025-09-07 00:30:29 +02:00 committed by GitHub
parent eefb28c312
commit f1b6d3851d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
53 changed files with 730 additions and 350 deletions

View file

@ -29,11 +29,11 @@
overflow: hidden !important;
div {
opacity: .5;
opacity: 0.5;
}
&:before {
font-family: "Font Awesome 6 Pro";
font-family: 'Font Awesome 6 Pro';
content: '\f110';
position: absolute;
height: 100%;
@ -41,11 +41,13 @@
display: flex;
align-items: center;
justify-content: center;
animation: spinner 1.5s linear infinite;
animation: spinner 1.5s linear infinite;
}
}
@keyframes spinner {
to { transform: rotate(360deg); }
to {
transform: rotate(360deg);
}
}
}
}