mirror of
https://github.com/godotengine/godot-asset-library.git
synced 2026-01-05 18:10:50 +03:00
34 lines
691 B
CSS
34 lines
691 B
CSS
.form-search .form-group {
|
|
margin-bottom: 0.2em;
|
|
margin-right: 40px;
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
.form-search .form-group {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
@supports (display: flex) {
|
|
@media screen and (min-width: 768px) {
|
|
.form-search {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-flow: wrap;
|
|
}
|
|
.form-search .form-group {
|
|
margin-right: 1em;
|
|
margin-left: 1em;
|
|
flex-shrink: 0;
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.required_mark::after {
|
|
content: ' *';
|
|
color: #d9534f;
|
|
}
|
|
.media-object {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|