feature: Mobile Menu & Style Polish

This commit is contained in:
daniel-c-harvey
2026-06-07 06:53:21 -04:00
parent 84a302ce24
commit 13adb144a6
7 changed files with 69 additions and 84 deletions
@@ -1,7 +1,14 @@
::deep .xxxx {
background-color: var(--deepdrft-muted)
.icon-container {
display: flex;
justify-content: center;
align-content: center;
background-color: var(--deepdrft-soft);
border-radius: 50%;
height: 60px;
width: 60px;
transition: background-color 1s ease-in-out;
}
::deep .xxxx:hover {
background-color: color-mix(var(--deepdrft-muted), var(--deepdrft-navy));
.icon-container:hover {
background-color: color-mix(var(--deepdrft-soft), var(--deepdrft-navy-mid) 25%);
}