diff --git a/src/components/applications/.common/HeaderMenu.module.css b/src/components/applications/.common/HeaderMenu.module.css index 237e095..6d293dc 100644 --- a/src/components/applications/.common/HeaderMenu.module.css +++ b/src/components/applications/.common/HeaderMenu.module.css @@ -1,6 +1,6 @@ .Container { display: flex; width: 100%; - height: 1.25rem; + height: 1.5rem; background-color: var(--background-color-a); } \ No newline at end of file diff --git a/src/components/utils/DropdownButton.module.css b/src/components/utils/DropdownButton.module.css index 7a02f03..e4eb245 100644 --- a/src/components/utils/DropdownButton.module.css +++ b/src/components/utils/DropdownButton.module.css @@ -1,5 +1,6 @@ .Container { position: relative; + height: 100%; } .Button { @@ -24,7 +25,10 @@ position: absolute; top: 100%; left: 0; + padding: 0.35rem; background-color: var(--background-color-b); + border-bottom-left-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } .Dropdown > button { @@ -32,11 +36,12 @@ gap: 0.75rem; justify-content: space-between; width: 100%; - padding: 0.125rem 0.4rem; + padding: 0.25rem 0.5rem; background: none; border: none; + border-radius: 0.5rem; outline: none; - font-size: 0.8rem; + font-size: 0.85rem; text-align: start; white-space: nowrap; cursor: pointer; diff --git a/src/styles/global.css b/src/styles/global.css index 5b83c60..af61bc5 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -91,6 +91,7 @@ button { outline: none; transition: background-color 100ms ease-in-out; cursor: pointer; + user-select: none; } code {