Skip to content

Commit

Permalink
fix(template): improve css for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jun 13, 2017
1 parent 5c4fa31 commit b07c77d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/resources/error.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@
.error-stack {
background: #edecea;
height: 650px;
padding: 100px 80px;
box-sizing: border-box;
}
Expand All @@ -456,6 +455,7 @@
.error-message {
font-weight: 300;
font-size: 40px;
line-height: 48px;
}
.error-title {
Expand Down Expand Up @@ -609,6 +609,20 @@
.is-hidden {
display: none;
}
@media only screen and (max-width: 970px) {
.error-frames {
flex-direction: column-reverse;
}
.frame-preview {
width: 100%;
}
.frame-stack {
width: 100%;
}
}
</style>
</head>
<body>
Expand Down

0 comments on commit b07c77d

Please sign in to comment.