mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 17:14:52 -07:00
Add left nav (#4705)
* Automated translation update ( bf08a04cda )
* Add Layout component wip
* finish layout implementation
* convert header to left nav
* better nav item spacing
* return source files to original glory
* lint fix
* Remove height limit on login screen
* fix top spacing on 3-panel layout
---------
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Brent Clark <brent@backboneiq.com>
This commit is contained in:
parent
cab5f29b57
commit
cef99cba71
18 changed files with 280 additions and 201 deletions
31
webclient/src/containers/Layout/Layout.css
Normal file
31
webclient/src/containers/Layout/Layout.css
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
.layout {
|
||||
height: 100%;
|
||||
max-height: 100%;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.layout--no-height-limit {
|
||||
height: initial;
|
||||
max-height: initial;
|
||||
}
|
||||
|
||||
.bottom-bar__container {
|
||||
background: #555;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.page__body {
|
||||
flex: 1;
|
||||
max-height: calc(100% - 50px);
|
||||
}
|
||||
|
||||
.page {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
width: 100%;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue