mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-13 19:12:29 +01:00
* New: Webpack 4 * New: Gulp 4 * New: Transpile UI for old browsers Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
23 lines
369 B
CSS
23 lines
369 B
CSS
.captchaInputWrapper {
|
|
display: flex;
|
|
}
|
|
|
|
.input {
|
|
composes: input from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasError {
|
|
composes: hasError from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasWarning {
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasButton {
|
|
composes: hasButton from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.recaptchaWrapper {
|
|
margin-top: 10px;
|
|
}
|