Remove right margin from the terminal

This commit is contained in:
Jonathan Frederic 2014-12-18 16:28:59 -08:00
parent 8d2e57e3ef
commit 7926c36b0d
2 changed files with 5 additions and 7 deletions

View File

@ -10473,6 +10473,9 @@ span.autosave_status {
color: white;
background: black;
padding: 0.4em;
border-radius: 2px;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
}
.terminal,
.terminal dummy-screen {
@ -10485,9 +10488,5 @@ span.autosave_status {
}
#terminado-container {
margin-top: 20px;
background: black;
border-radius: 2px;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
}
/*# sourceMappingURL=style.min.css.map */

View File

@ -4,6 +4,8 @@
color: white;
background: black;
padding: @code_padding;
border-radius: @border-radius-base;
.box-shadow(@global-shadow-dark);
&, dummy-screen {
line-height: 1em;
@ -18,7 +20,4 @@
#terminado-container {
margin-top: @page-header-padding;
background: black;
border-radius: @border-radius-base;
.box-shadow(@global-shadow-dark);
}