Skip to content

Commit 9833f5a

Browse files
committed
Improved Footer structure
1 parent 1fecdd7 commit 9833f5a

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1414
- [Skeleton + Monorepo][Docker] Update tp PHP 8.4
1515
- [Core] Add `SERVE_PORT` env variable for the built-in PHP Server.
1616
- [Admin] Fix missing crumbs in Permission detail page
17+
- [Pink-Cupcake] Improved footer structure
1718

1819
## 6.0.0-beta.6 - 2025-11-23
1920
- Update Docker Readme
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
<template>
2-
<UFFooterContent>{{ $t('COPYRIGHT', { year: new Date().getFullYear() }) }}</UFFooterContent>
2+
<UFFooterContent>
3+
<div>{{ $t('COPYRIGHT', { year: new Date().getFullYear() }) }}</div>
4+
</UFFooterContent>
35
</template>

packages/theme-pink-cupcake/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
- Minor UI tweaks to sidebar components
1111
- Renamed sidebar class
1212
- CSS: Add webkit-font-smoothing
13+
- Improved footer structure
1314

1415
## [6.0.0-beta.6](https://github.com/userfrosting/theme-pink-cupcake/compare/6.0.0-beta.5...6.0.0-beta.6)
1516
- Fix fontsource resources not being found when importing the main Less file in skeleton
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
<template>
2-
<footer class="uk-section uk-section-small uk-section-muted uk-text-center">
2+
<footer class="uk-section uk-section-small uk-section-muted">
33
<hr />
4-
<p class="uk-text-small uk-text-center" data-test="slot">
4+
<div class="uk-text-small uk-grid-divider uk-grid-small uk-child-width-auto uk-flex-center" uk-grid data-test="slot">
55
<slot></slot>
66
<slot name="userfrosting">
7-
<span v-if="$slots.default"> | </span>
8-
<span v-html="$t('BUILT_WITH_UF')"></span>
9-
<span>
10-
| {{ $t('THEME_BY') }}
7+
<div v-html="$t('BUILT_WITH_UF')"></div>
8+
<div>
9+
{{ $t('THEME_BY') }}
1110
<a
1211
href="http://getuikit.com"
1312
title="Visit UIkit 3 site"
1413
target="_blank"
1514
data-uk-tooltip>
1615
<span data-uk-icon="uikit"></span>
1716
</a>
18-
</span>
17+
</div>
1918
</slot>
20-
</p>
19+
</div>
2120
</footer>
2221
</template>

0 commit comments

Comments
 (0)