Skip to content

Commit

Permalink
adjust css
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Ledoux committed Oct 24, 2024
1 parent 09383a6 commit 8c37d4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ui/src/override/components/flows/blueprints/Blueprints.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<top-nav-bar v-if="!embed" :title="routeInfo.title" />
<blueprints-layout>
<blueprints-page-header v-if="!embed" class="ms-0 mw-100" />
<blueprints-page-header v-if="!embed" />
<section :class="{'container': !embed}" class="main-container" v-bind="$attrs">
<blueprint-detail v-if="selectedBlueprintId" :embed="embed" :blueprint-id="selectedBlueprintId" @back="selectedBlueprintId = undefined" :blueprint-base-uri="blueprintUri" />
<blueprints-browser @loaded="$emit('loaded', $event)" :class="{'d-none': !!selectedBlueprintId}" :embed="embed" :blueprint-base-uri="blueprintUri" @go-to-detail="blueprintId => selectedBlueprintId = blueprintId" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<nav class="header">
<nav class="header container">
<div class="image-box">
<img src="../../../../assets/icons/blueprint.svg" :alt="$t('blueprints.header.alt')">
</div>
Expand All @@ -16,8 +16,7 @@
display: flex;
align-items: center;
gap: 16px;
padding: calc(5 * var(--spacer));
padding-top: calc(3 * var(--spacer));
padding-top: calc(4 * var(--spacer));
padding-bottom: calc(2 * var(--spacer));
.catch-phrase {
Expand Down

0 comments on commit 8c37d4d

Please sign in to comment.