Changed the screen resolution for 640x480. Created centered class for screen;

This commit is contained in:
vinicius.reif
2019-09-12 12:58:14 -03:00
parent cc375dd9f3
commit a478627e01
6 changed files with 29 additions and 28 deletions

View File

@@ -20,4 +20,6 @@
&.active {
display: block !important;
}
}
}
.tui-modal-button {}
.tui-modal-close-button {}

View File

@@ -1,6 +1,6 @@
.tui-screen-640-360 {
.tui-screen-640-480 {
width: 640px;
height: 360px;
height: 480px;
}
.tui-screen-800-600 {
width: 800px;
@@ -11,11 +11,15 @@
height: 768px;
}
.tui-screen-640-360,
.tui-screen-640-480,
.tui-screen-800-600,
.tui-screen-1024-768 {
position: relative;
&.bordered{
border: 2px solid black;
}
&.centered {
margin: auto;
margin-top: 20px;
}
}