diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-10-15 23:07:42 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:12:47 +0100 |
commit | 396f570105d5f951f7e7da8f5da57e001a31a16b (patch) | |
tree | 1092bd44a740c49324dc4711e067d8bd20a45d6d /src/styles/landscape.scss | |
parent | a15a92badf94e2123a4d11e6c261aaa1b1ea09a9 (diff) |
FUNCT Add support for landscape portrait
Diffstat (limited to 'src/styles/landscape.scss')
-rw-r--r-- | src/styles/landscape.scss | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/src/styles/landscape.scss b/src/styles/landscape.scss index 4742273..0a12494 100644 --- a/src/styles/landscape.scss +++ b/src/styles/landscape.scss @@ -6,14 +6,35 @@ body { - .center { - width: 80%; - float: left; + .top{ + width: $header_size; + height: 100%; + flex-direction: column; + + .button { + border-width: 1px 0 1px 0; + order: 2; + } + + .infoContainer { + border-width: 1px 0 1px 0; + width: $header_size; + height: 200px; + order: 1; + } + + .statusContainer { + width: 100%; + height: 60px; + flex-direction: row; + align-items: center; + order: 0; + + } } .bottom { - flex-direction: column; - width: 20%; + display: none; } } |