diff --git a/src/package/components/Select.svelte b/src/package/components/Select.svelte
index 5312837fc..456cbd34e 100644
--- a/src/package/components/Select.svelte
+++ b/src/package/components/Select.svelte
@@ -1,9 +1,8 @@
@@ -108,12 +93,12 @@
{#if open}
-
+
{#each options as option (option.value)}
-
- {
- selected = option
- open = false
- }}
- class:is-selected={selected?.value === option.value}>
+ {@const isSelected = selected?.value === option.value}
+
+
{/each}
-
+
{/if}
@@ -174,29 +161,29 @@
top: calc(100% * -1 * var(--selected-index));
background-color: var(--color-button-bg);
border-radius: var(--rounded);
- box-shadow: var(--shadow-inset-sm), var(--shadow-floating);
- border: var(--border-width) solid var(--color-tertiary);
+ box-shadow: var(--shadow-inset-sm), var(--shadow-floating), 0 0 0 1px var(--color-tertiary);
+ /* border: var(--border-width) solid var(--color-tertiary); */
overflow: hidden;
z-index: 5;
- li {
+ button {
padding: 0.25rem 1rem;
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
- &:hover {
+ &:hover,
+ &:focus {
background-color: var(--color-brand-dark);
color: var(--color-brand-dark-contrast);
+ outline: none;
+ border-radius: 0;
}
&.is-selected {
background-color: var(--color-brand-light);
color: var(--color-text);
cursor: default;
- display: flex;
- align-items: center;
- gap: 0.5rem;
-
- :global(.icon) {
- }
}
}
}
diff --git a/src/package/components/TextInput.svelte b/src/package/components/TextInput.svelte
index 3d3777215..c9e5d0480 100644
--- a/src/package/components/TextInput.svelte
+++ b/src/package/components/TextInput.svelte
@@ -39,7 +39,6 @@
box-shadow: var(--shadow-inset-sm);
background-color: var(--color-button-bg);
border: none;
- padding: 0.25rem 1rem;
width: 100%;
max-width: 100%;
@@ -48,8 +47,13 @@
}
}
+ input {
+ padding: 0.25rem 1rem;
+ }
+
textarea {
min-height: 2.5rem;
+ padding: 0.5rem 1rem;
}
:global(.icon) {
diff --git a/src/package/styles/normalize.postcss b/src/package/styles/normalize.postcss
index 355bc66ce..fd7825178 100644
--- a/src/package/styles/normalize.postcss
+++ b/src/package/styles/normalize.postcss
@@ -26,18 +26,23 @@ button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex='0']:focus-visible {
- outline: 0.25rem solid hsla(290, 100%, 40%, 0.5);
+ outline: 0.25rem solid hsla(290, 100%, 75%, 1);
+ border-radius: 0.25rem;
+}
+
+:where(a) {
border-radius: 0.25rem;
}
input,
button,
a {
- outline: 0.25rem solid hsla(155, 58%, 44%, 0);
+ outline: 0 solid hsla(290, 100%, 40%, 0);
transition: outline 0.2s ease-in-out;
}
-input[type='text']:focus-visible {
+input[type='text']:focus-visible,
+input[type='textarea']:focus-visible {
outline: 0.25rem solid hsla(155, 58%, 44%, 0.7);
}
diff --git a/src/routes/getting-started/css.md b/src/routes/getting-started/css.md
index c37aa5ff7..5285b227e 100644
--- a/src/routes/getting-started/css.md
+++ b/src/routes/getting-started/css.md
@@ -6,7 +6,7 @@ title: Writing CSS
### Avoid inconsistent CSS units
-Prefer using `rem` units, using only whole and half units, eg. `2rem` or `1.5rem`. If you need a specific pixel (`px`) measurement, use `px` and add comment explaining why you used it. The one exception is that `0.25` is allowed.
+Prefer using `rem` units, using only whole and half units, eg. `2rem` or `1.5rem`. If you need a specific pixel (`px`) measurement, use `px` and add comment explaining why you used it. The one exception is that `0.25rem` is allowed.
> Using `rem` units lets you change the scale of the UI by simply changing the body font size.