Update login page background color

This commit is contained in:
Gregory Trullemans 2023-11-14 20:41:02 +01:00
parent c298f64db2
commit a197312515
2 changed files with 11 additions and 1 deletions

View File

@ -34,7 +34,7 @@
<script src="{% static "js/plugins/chartjs/chartjs-adapter-moment_1.0.0.js" %}"></script>
</head>
<body class="dark:bg-sky-950 flex items-center justify-center h-screen">
<body class="dark:bg-gray-900 antialiased flex items-center justify-center h-screen">
<div class="bg-slate-800 p-8 rounded shadow-md w-96 text-white">
<h2 class="text-2xl font-semibold mb-6">Connection</h2>

View File

@ -746,6 +746,11 @@ video {
color: rgb(75 85 99 / var(--tw-text-opacity));
}
.antialiased {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.shadow-md {
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
@ -776,4 +781,9 @@ video {
--tw-bg-opacity: 1;
background-color: rgb(2 6 23 / var(--tw-bg-opacity));
}
.dark\:bg-gray-900 {
--tw-bg-opacity: 1;
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}
}