Force light theme + CSS fix

This commit is contained in:
Nicolò P. 2024-10-29 08:11:27 +01:00
parent 63a1d3d412
commit 008cc7218d
4 changed files with 11 additions and 4 deletions

3
.gitignore vendored
View File

@ -1,6 +1,9 @@
.ddev
.vscode
# DB dumps
*sql*
###> symfony/framework-bundle ###
/.env.local
/.env.local.php

8
assets/styles/app.css Normal file → Executable file
View File

@ -2,13 +2,17 @@
@import url('../fonts/stylesheet.css');
@import url('../fontawesome-free-6.6.0-web/css/all.min.css');
:root {
--arcoa-blue: rgba(66,135,199,0.98);
}
body {
font-family: 'nunitolight';
}
.arcoa-menu {
background-color: rgba(66,135,199,0.98);
max-height: 100vh;
background-color: var(--arcoa-blue);
min-height: 100vh;
overflow-y: auto;
}
#vocabs a {

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html data-theme="light">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>