Spaces:
Running
Running
File size: 1,344 Bytes
818d342 3d2f310 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
/* Add your custom CSS here */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
margin: 0;
padding: 0;
background-color: #f0f2f5;
}
body[data-mantine-color-scheme="light"] {
background-color: #f8f9fa;
}
body[data-mantine-color-scheme="dark"] {
background-color: #060621;
}
.mantine-AppShell-main {
transition: background-color 0.3s ease-in-out;
}
.tooltip-wrapper {
height: 100%;
display: flex;
flex-direction: column;
}
body[data-mantine-color-scheme="light"] h1,
body[data-mantine-color-scheme="light"] h2,
body[data-mantine-color-scheme="light"] h3,
body[data-mantine-color-scheme="light"] h4,
body[data-mantine-color-scheme="light"] h5,
body[data-mantine-color-scheme="light"] h6 {
color: #000000; /* Noir pour les titres en thème clair */
}
body[data-mantine-color-scheme="light"] a {
color: #000000; /* Noir pour les liens en thème clair */
}
/* Custom styles for NavLink hover in dark theme */
body[data-mantine-color-scheme="dark"] .mantine-NavLink-root:hover {
background: #181F2F !important;
color: white !important; /* Assure que la couleur du texte est visible */
}
.m_3b16f56b, .m_3840c879 {background-color:#060621!important} |