Skip to content

Commit 74ec606

Browse files
authored
Merge pull request #6208 from LibreSign/backport/6207/stable32
[stable32] fix: improve responsive mode
2 parents 1791d3b + 98d839b commit 74ec606

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

src/views/DefaultPageError.vue

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,19 @@ export default {
101101
border-radius: var(--border-radius-large);
102102
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
103103
104+
:deep(.empty-content__action) {
105+
min-width: 500px;
106+
107+
@media (max-width: 768px) {
108+
min-width: 100%;
109+
}
110+
}
111+
104112
.error-messages {
105113
display: flex;
106114
flex-direction: column;
107115
gap: 12px;
108116
width: 100%;
109-
min-width: 500px;
110-
111-
@media (max-width: 768px) {
112-
min-width: auto;
113-
}
114117
}
115118
116119
@media (max-width: 768px) {

0 commit comments

Comments
 (0)