feat: add notification animations and improve UI across pages Add enter/exit animations to NotificationContainer with smooth slide effects Refactor ConfigPage search bar to float over editor with improved UX Enhance AuthFilesPage type badges with proper light/dark theme color support Fix grid layout in AuthFilesPage to use consistent 3-column layout Update icon button sizing and loading state handlin Update i18n translations for search functionality

This commit is contained in:
Supra4E8C
2025-12-13 00:46:07 +08:00
parent 7c0a2280a4
commit bcf82252ea
8 changed files with 373 additions and 100 deletions

View File

@@ -132,10 +132,10 @@
.fileGrid {
display: grid;
gap: $spacing-md;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
grid-template-columns: repeat(3, minmax(0, 1fr));
@include tablet {
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@include mobile {
@@ -240,6 +240,16 @@
padding-top: $spacing-sm;
}
.iconButton:global(.btn.btn-sm) {
width: 34px;
height: 34px;
min-width: 34px;
padding: 0;
box-sizing: border-box;
border-radius: 6px;
gap: 0;
}
.actionIcon {
font-style: normal;
font-size: 14px;