Files
docs/src/components/Input/styles.module.css
T
TheFox0x7 301154989a Add docusaurus faster (#149)
Leads to about half the build time.

Reviewed-on: https://gitea.com/gitea/docs/pulls/149
Co-authored-by: TheFox0x7 <[email protected]>
Co-committed-by: TheFox0x7 <[email protected]>
2025-01-10 19:15:45 +00:00

24 lines
518 B
CSS

.input {
display: flex;
height: 55px;
padding: 0 2rem;
align-items: center;
border-radius: calc(var(--ifm-global-border-radius) / 2);
border: none;
background: var(--palette-rock);
font-size: var(--font-size-normal);
color: var(--ifm-color-white);
border: 2px solid transparent;
}
.input:focus {
outline: none;
border-color: var(--ifm-color-white);
}
.input::placeholder {
color: var(--palette-pale-blue);
font-size: var(--font-size-normal);
font-weight: var(--ifm-font-weight-bold);
}