mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
* one2many tags now not hidden behind inputs. * Drawer icons now with much better look. * No overflow bug in small views when closing drawer. * Documented it when resizing viewport. (+1 squashed commit) * Whitespace cleanup.
24 lines
461 B
Plaintext
Executable File
24 lines
461 B
Plaintext
Executable File
/* Copyright 2016 LasLabs Inc.
|
|
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
// Do not fix the search part, it's too big for small screens
|
|
@media (max-width: @screen-sm-max) {
|
|
overflow: inherit;
|
|
.openerp {
|
|
.oe-view-manager {
|
|
overflow: inherit;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|