Files
webgui/emhttp/plugins/dynamix/sheets/Syslog.css
Zack Spear f8513aecd1 fix: enhance layout consistency in Syslog.page and Syslog.css
- 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.
2025-05-22 16:28:29 -07:00

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;
}
}