Fixed weird fullscreen-button size (#104)

* Added class to button

* Update notes.css
This commit is contained in:
Andreas Jacobsen 2017-06-27 17:02:24 +02:00 committed by Hendrik Leppelsack
parent e351092b44
commit 966629db22
2 changed files with 4 additions and 1 deletions

View File

@ -144,6 +144,9 @@
transition: none !important;
-webkit-transition: none !important;
}
.btn-fullscreen {
padding: 15px;
}
/* markdown styling */

View File

@ -2,6 +2,6 @@
<div class="note-meta">
<span class="note-word-count" ng-if="note.content.length > 0">{{note.content | wordCount}}</span>
<span class="note-meta-right">
<button class="icon-fullscreen has-tooltip" notes-tooltip ng-click="toggleDistractionFree()"></button>
<button class="icon-fullscreen has-tooltip btn-fullscreen" notes-tooltip ng-click="toggleDistractionFree()"></button>
</span>
</div>