Merge pull request #2043 from nextcloud/fix-actionCaption-layout

Fix ActionCaption layout
This commit is contained in:
marco 2021-06-28 11:21:56 +01:00 коммит произвёл GitHub
Родитель 614015fc7b bb824a6e78
Коммит ff065bd1a9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -53,7 +53,7 @@ export default {
<style lang="scss" scoped>
.app-navigation-caption {
color: var(--color-text-maxcontrast);
line-height: var(--clickable-area);
line-height: $clickable-area;
white-space: nowrap;
text-overflow: ellipsis;
box-shadow: none !important;
@ -61,5 +61,8 @@ export default {
pointer-events: none;
margin-left: 12px;
padding-right: 14px;
height: $clickable-area;
display: flex;
align-items: center;
}
</style>