Mes coses
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s

This commit is contained in:
2026-03-22 01:18:48 +01:00
parent bd1148aeab
commit 8e2e56de1b
7 changed files with 94 additions and 30 deletions

View File

@@ -50,8 +50,8 @@ const changeLocale = (lang) => {
<style lang="scss" scoped>
.menu-button {
background: #161b22;
color: white;
background: var(--color-background-fore);
color: var(--color-text);
font-size: 1em;
border: 1px solid #30363d;
padding: 8px 12px;
@@ -69,7 +69,7 @@ z-index: 10;
top: 50px;
right: 110px;
margin-right: 10px;
background: #161b22;
background: var(--color-background-fore);
border: 1px solid #30363d;
border-radius: 8px;
padding: 8px 0;
@@ -79,14 +79,18 @@ z-index: 10;
/* Items */
.menu-item {
padding: 8px 16px;
color: #c9d1d9;
color: var(--color-text);
cursor: pointer;
display: flex;
gap: 10px;
align-items: center;
&.active {
background: #30363d;
background: var(--color-selected);
}
}
.menu-item:hover {
background: var(--color-hover);
}
</style>