mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 15:10:19 -06:00
- Refactored Syslog.page to use flexbox for improved layout of log controls and buttons. - Updated Syslog.css to include new styles for .syslog-controls and .label for better alignment and spacing. - This change continues the effort to enhance visual consistency across the plugin.
29 lines
471 B
CSS
29 lines
471 B
CSS
input#max {
|
|
width: 60px;
|
|
}
|
|
|
|
.syslog-controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
box-sizing: border-box;
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.label {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin: 0;
|
|
padding: .2rem .6rem;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
margin: 0;
|
|
}
|
|
} |