cryptpad/www/todo/todo.less

35 lines
590 B
Plaintext
Raw Normal View History

2017-07-23 14:27:47 +02:00
@import "/customize/src/less/variables.less";
@import "/customize/src/less/mixins.less";
@button-border: 2px;
html, body {
margin: 0px;
height: 100%;
}
#toolbar {
display: flex; // We need this to remove a 3px border at the bottom of the toolbar
}
body {
display: flex;
flex-flow: column;
}
#app {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.cryptpad-toolbar {
padding: 0px;
display: inline-block;
2017-07-24 16:29:39 +03:00
}
#container {
display: flex;
flex: 1;
flex-flow: column;
padding: 20px;
align-items: center;
2017-07-23 16:08:49 +03:00
}