zotero/scss/components/_createParent.scss
Tom Najdek c9efc33d9c
Re-implement "Create Parent Dialog" without using React for 7.0 (#5381)
* Fixed an issue where the window size did not match the content
* Replaced the semi-transparent progress bar with a spinner
* Fixed a problem that allowed triggering a search while one was already in progress
* Reduced code complexity
2025-07-14 21:21:07 -04:00

24 lines
443 B
SCSS

#zotero-create-parent-container {
.title {
font-size: 1.4em;
font-weight: 700;
// Let the dialog get a little wider if the title is long
max-width: 550px;
}
.intro {
margin-bottom: .5em;
max-width: 550px; // Avoid expanding the dialog too wide; instead, in some languages, the intro text will wrap.
}
.body {
align-items: center;
display: flex;
margin-bottom: 1em;
input {
flex: 1;
margin-left: 0;
}
}
}