open-nomad/ui/app/styles/components/error-container.scss

35 lines
588 B
SCSS
Raw Normal View History

2017-09-28 17:05:18 +00:00
.error-container {
width: 100%;
height: 100%;
padding-top: 25vh;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
background: $white-ter;
2017-09-28 17:05:18 +00:00
.error-message {
width: 95vw;
2017-09-28 17:05:18 +00:00
max-width: 600px;
.title {
2017-09-28 17:05:18 +00:00
text-align: center;
}
}
.error-stack-trace {
border: 1px solid $grey-lighter;
2017-09-28 17:05:18 +00:00
border-radius: $radius;
background: $white;
2017-09-28 17:05:18 +00:00
}
.error-links {
padding-top: 15px;
margin-top: 15px;
border-top: 1px solid $grey-lighter;
width: 95vw;
max-width: 600px;
text-align: center;
}
2017-09-28 17:05:18 +00:00
}