mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
* ErrorMessage is not centered * Adjust ErrorMessage size on large screens Co-authored-by: Gabriel Dutra <nesk.frz@gmail.com> Co-authored-by: Gabriel Dutra <nesk.frz@gmail.com>
18 lines
279 B
Plaintext
18 lines
279 B
Plaintext
.error-message-container {
|
|
width: 100%;
|
|
padding: 0 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
.error-state {
|
|
max-width: 1200px;
|
|
width: 100%;
|
|
|
|
@media (min-width: 768px) {
|
|
width: 65%;
|
|
}
|
|
}
|
|
}
|