mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
39 lines
658 B
SCSS
39 lines
658 B
SCSS
// This file is part of the Indico plugins.
|
|
// Copyright (C) 2002 - 2024 CERN
|
|
//
|
|
// The Indico plugins are free software; you can redistribute
|
|
// them and/or modify them under the terms of the MIT License;
|
|
// see the LICENSE file for more details.
|
|
|
|
.captcha,
|
|
.error {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1em;
|
|
}
|
|
|
|
.captcha {
|
|
margin-top: 1em;
|
|
|
|
&:global(.ui.form .field) {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
:global(.field) iframe {
|
|
border-radius: 4px;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
:global(.field.error) iframe {
|
|
border: 1px solid #c00;
|
|
}
|
|
}
|
|
|
|
.error {
|
|
margin-top: 1em;
|
|
|
|
:global(.ui.error.message) {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|