Compare commits

...

2 Commits

Author SHA1 Message Date
272fcf93c6 fix: search bar scaling 2024-08-07 11:11:07 +02:00
6b5a8a7375 fix(sigit): excel extension typo, more excel types 2024-08-07 11:10:32 +02:00
2 changed files with 12 additions and 4 deletions

View File

@ -22,8 +22,10 @@ export const getExtensionIconLabel = (extension: string) => {
icon = faFilePdf icon = faFilePdf
break break
case 'xslx': case 'xlsx':
case 'xsl': case 'xls':
case 'xlsb':
case 'xlsm':
icon = faFileExcel icon = faFileExcel
break break

View File

@ -19,11 +19,11 @@
.actionButtons { .actionButtons {
display: flex; display: flex;
justify-content: center; justify-content: end;
align-items: center; align-items: center;
gap: 10px; gap: 10px;
margin-left: auto;
padding: 1.5px 0; padding: 1.5px 0;
flex-grow: 1;
} }
.search { .search {
@ -37,6 +37,12 @@
outline: solid 1px #dddddd; outline: solid 1px #dddddd;
background: white; background: white;
width: 100%;
@container (width >= 610px) {
max-width: 246px;
}
&:focus-within { &:focus-within {
outline-color: $primary-main; outline-color: $primary-main;
} }