Skip to content

Commit e5e2766

Browse files
authored
Merge pull request #6943 from nextcloud-libraries/backport/6936/stable8
[stable8] fix(NcEmptyContent): description styling for mobile
2 parents a1b3aa7 + b68ae5e commit e5e2766

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
# Changelog
77

8+
## [v8.26.2](https://github.com/nextcloud-libraries/nextcloud-vue/tree/v8.26.2) (TBA)
9+
10+
### 📝 Notes
11+
#### NcEmptyContent
12+
A padding was added to the empty content wrapper.
13+
It is recommended to check in-app styles for possible overrides.
14+
15+
816
## [v8.26.1](https://github.com/nextcloud-libraries/nextcloud-vue/tree/v8.26.1) (2025-05-07)
917
### 🐛 Fixed bugs
1018
* [stable8] fix(NcIconSvgWrapper): center svg span wrapper [#6880](https://github.com/nextcloud-libraries/nextcloud-vue/pull/6880) ([backportbot](https://github.com/backportbot))

src/components/NcEmptyContent/NcEmptyContent.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ export default {
192192
justify-content: center;
193193
/* In case of using in a flex container - flex in advance */
194194
flex-grow: 1;
195+
padding: var(--default-grid-baseline);
195196
196197
.modal-wrapper & {
197198
margin-top: 5vh;
@@ -228,6 +229,8 @@ export default {
228229
229230
&__description {
230231
color: var(--color-text-maxcontrast);
232+
text-align: center;
233+
text-wrap-style: balance;
231234
}
232235
233236
&__action {

0 commit comments

Comments
 (0)