Skip to content

Commit 226d122

Browse files
committed
chore: small adjustments on UI for better browser compatability
1 parent b37d7f1 commit 226d122

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

spring-boot-admin-server-ui/src/main/frontend/components/sba-sticky-subnav.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div
33
id="subnavigation"
4-
class="sticky shadow-sm top-14 w-full bg-white py-1 px-2 md:px-6 backdrop-filter backdrop-blur bg-opacity-40 z-20"
4+
class="sticky shadow-sm top-14 w-full bg-white py-1 px-2 md:px-6 backdrop-filter backdrop-blur bg-opacity-40 z-20 drop-shadow-lg"
55
>
66
<slot />
77
</div>

spring-boot-admin-server-ui/src/main/frontend/views/about/index.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
-->
1616

1717
<template>
18+
<sba-wave />
1819
<div class="container prose prose-slate mx-auto pt-10">
1920
<h1
2021
class="mb-1"
@@ -117,9 +118,10 @@
117118

118119
<script>
119120
import SbaButton from '@/components/sba-button.vue';
121+
import SbaWave from "../../components/sba-wave";
120122
121123
export default {
122-
components: {SbaButton},
124+
components: {SbaWave, SbaButton},
123125
data: () => ({
124126
// eslint-disable-next-line no-undef
125127
version: __PROJECT_VERSION__

spring-boot-admin-server-ui/src/main/frontend/views/instances/shell/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
:instance="instance"
2626
:application="application"
2727
/>
28-
<main class="h-full relative z-0 ml-10 md:ml-60 transition-all">
28+
<main class="min-h-full relative z-0 ml-10 md:ml-60 transition-all">
2929
<div class="">
3030
<router-view
3131
v-if="instance"

spring-boot-admin-server-ui/src/main/frontend/views/instances/shell/sidebar.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,14 +195,14 @@ export default {
195195

196196
<style scoped>
197197
.instance-info-block {
198-
@apply bg-sba-50 text-sba-900 flex items-center text-sm py-4 px-6 text-left overflow-hidden text-ellipsis rounded transition duration-300 ease-in-out cursor-pointer;
198+
@apply bg-sba-50 bg-opacity-40 text-sba-900 flex items-center text-sm py-4 px-6 text-left overflow-hidden text-ellipsis rounded transition duration-300 ease-in-out cursor-pointer;
199199
}
200200
.navbar-link {
201-
@apply cursor-pointer duration-300 ease-in-out flex items-center overflow-hidden py-4 rounded text-sm transition whitespace-nowrap;
201+
@apply cursor-pointer bg-sba-50 bg-opacity-40 duration-300 ease-in-out flex items-center overflow-hidden py-4 rounded text-sm transition whitespace-nowrap;
202202
@apply text-gray-700;
203203
}
204204
.navbar-link:hover, .navbar-link__active {
205-
@apply bg-sba-50 text-sba-900;
205+
@apply bg-sba-50 bg-opacity-80 text-sba-900;
206206
}
207207
208208
.navbar-link__group_item {

0 commit comments

Comments
 (0)