Skip to content

Commit

Permalink
Visual changes and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGedox committed Dec 11, 2021
1 parent 5de79ea commit c5e9729
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 17 deletions.
4 changes: 2 additions & 2 deletions public/assets/config.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ colors:
background: "rgba(232, 233, 255, 1)"
card-background: rgba(232, 233, 255, 0.87)
footer-background: "rgba(232, 233, 255, 1)"
text: "#ffffff"
text: "#00044b"
text-header: "#fafafa"
text-title: "#00044b"
text-subtitle: "#161839"
card-shadow: rgba(0, 0, 0, 0.5)
link: "#3255dc"
link-hover: "#1830ae"
background-image: "url(../assets/img/wall1.jpg)"
background-image: "url(../assets/img/wall2.jpg)"
dark:
border-radius: 14px
highlight-primary: rgba(10, 10, 70, 0.84)
Expand Down
Binary file modified public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@
<Message :item="config.message" />

<!-- Horizontal layout -->
<div v-if="!vlayout || filter" class="columns is-multiline">
<div
v-if="!vlayout || filter"
class="columns is-multiline is-variable is-1"
>
<template v-for="(group, groupIndex) in services">
<h2
v-if="group.name"
Expand All @@ -94,7 +97,7 @@
:key="'group-' + groupIndex + '-' + index"
:item="item"
:proxy="config.proxy"
:class="['column', `is-${12 / config.columns}`]"
:class="['column', 'service', `is-${12 / config.columns}`]"
/>
</template>
</div>
Expand Down Expand Up @@ -123,6 +126,7 @@
:key="'group-' + groupIndex + '-' + index"
:item="item"
:proxy="config.proxy"
class="service"
/>
</div>
</div>
Expand Down
7 changes: 5 additions & 2 deletions src/assets/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,15 @@
.navbar {
background-color: transparent;

.navbar-brand {
margin-left: 0 !important;
}

.navbar-item {
background-color: var(--highlight-primary);
border-radius: var(--border-radius);
color: var(--link) !important;
padding: 8px 12px;
margin-right: 0.3rem;
margin-right: 0.5rem;

&:last-child {
margin-right: 0;
Expand Down
16 changes: 7 additions & 9 deletions src/assets/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@ body {
}

#main-section {
margin-bottom: 2rem;
margin-bottom: 3.5rem;
padding: 0;

.column {
padding: 0.25rem;
}

h2 {
padding-bottom: 0px;
@include ellipsis();
Expand All @@ -64,6 +60,7 @@ body {

.message-header {
font-weight: bold;
background-color: #30364d;
border-radius: var(--border-radius) var(--border-radius) 0 0;
}

Expand All @@ -72,6 +69,11 @@ body {
border: none;
}
}

.column.service {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
}

.layout-vertical {
Expand Down Expand Up @@ -105,10 +107,6 @@ body {
}

.no-footer {
#main-section {
margin-bottom: 0;
}

.footer {
display: none;
}
Expand Down
4 changes: 2 additions & 2 deletions src/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ colors:
background: "rgba(232, 233, 255, 1)"
card-background: rgba(232, 233, 255, 0.87)
footer-background: "rgba(232, 233, 255, 1)"
text: "#ffffff"
text: "#00044b"
text-header: "#fafafa"
text-title: "#00044b"
text-subtitle: "#161839"
card-shadow: rgba(0, 0, 0, 0.5)
link: "#3255dc"
link-hover: "#1830ae"
background-image: "url(../assets/img/wall1.jpg)"
background-image: "url(../assets/img/wall2.jpg)"
dark:
border-radius: 14px
highlight-primary: rgba(10, 10, 70, 0.84)
Expand Down

0 comments on commit c5e9729

Please sign in to comment.