style: Remove unnecessary .woff file type

Info: WOFF2 is supported in all major browsers since 2016
This commit is contained in:
Marco Kaiser 2024-11-17 06:40:38 +01:00
parent 4712773f4e
commit a26bcacde8
Signed by: kaiserkiwi
GPG key ID: 664DEC0325FA5EAC

View file

@ -1,11 +1,10 @@
@font-face {
/*
/*
Note: The font files are not included in this repository due to legal restrictions.
For more information, please refer to the README.md file located in the 'fonts' directory.
*/
font-family: 'Departure Mono';
src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'),
url('../fonts/DepartureMono-Regular.woff') format('woff');
src: url('../fonts/DepartureMono-Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
@ -540,4 +539,4 @@ a {
a:hover {
text-decoration: none;
color: var(--cyber-secondary-color);
}
}