mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-10 18:53:59 +00:00
* New: Webpack 4 * New: Gulp 4 * New: Transpile UI for old browsers Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
24 lines
369 B
CSS
24 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;
|
|
}
|