mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
Merge pull request #6207 from LibreSign/fix/improve-responsive-mode
fix: improve responsive mode
This commit is contained in:
commit
0249686c1e
1 changed files with 8 additions and 5 deletions
|
|
@ -101,16 +101,19 @@ export default {
|
|||
border-radius: var(--border-radius-large);
|
||||
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
|
||||
|
||||
:deep(.empty-content__action) {
|
||||
min-width: 500px;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
min-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.error-messages {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
width: 100%;
|
||||
min-width: 500px;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
min-width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue