NotePostApp/www/css/editor.css

31 lines
586 B
CSS
Raw Normal View History

2019-01-07 21:34:24 -07:00
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/*
Created on : Jan 7, 2019, 9:30:35 PM
Author : Skylar Ittner
*/
.CodeMirror {
border: none;
margin-top: 45px;
}
.editor-toolbar {
position: fixed;
top: 56px;
right: 0;
left: 0;
z-index: 99999;
background-color: white;
border: none;
border-radius: 0px;
}
@media (min-width: 768px) {
.editor-toolbar {
top: 64px;
}
2019-01-07 21:34:24 -07:00
}