style: address bar color adjustments (#110)

This commit is contained in:
Ayo Ayco 2024-09-03 21:28:17 +02:00 committed by GitHub
parent 9214b5eebd
commit bcba01f04c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,9 +62,9 @@ const { url } = Astro.props;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
text-align: center; text-align: center;
border-radius: 30px; border-radius: 30px;
border: 1px solid #ccc; border: 2px solid rgb(var(--gray));
background-color: white; background-color: white;
box-shadow: 0 1px 3px 1px #eee; box-shadow: 0 1px 3px 1px rgb(var(--gray-light));
display: flex; display: flex;
input[type="url"]:focus { input[type="url"]:focus {
@ -77,7 +77,7 @@ const { url } = Astro.props;
border-radius: 30px; border-radius: 30px;
font-size: normal; font-size: normal;
padding: 0.5rem; padding: 0.5rem;
color: #555; color: rgb(var(--black));
caret-color: var(--accent); caret-color: var(--accent);
} }
@ -93,9 +93,8 @@ const { url } = Astro.props;
svg { svg {
border: 0px; border: 0px;
background-color: transparent; background-color: transparent;
margin-top: 3px; width: 24px;
width: 18px; height: 24px;
height: 18px;
cursor: pointer; cursor: pointer;
} }
} }
@ -134,7 +133,7 @@ const { url } = Astro.props;
} }
.btn[disabled="true"] svg { .btn[disabled="true"] svg {
color: #ccc !important; color: rgb(var(--gray-light)) !important;
cursor: default !important; cursor: default !important;
} }
} }