Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BC-6505 - Change defaultwireframe overflow #3085

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/components/templates/DefaultWireframe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@
}"
class="main-content"
>
<slot />
<div style="padding: 0 var(--space-lg)">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wieso machst du das hier mit nem Inline Style und nicht mit ner CSS-Klasse?

<slot />
</div>
</v-container>
</v-container>
</template>
Expand Down Expand Up @@ -108,15 +110,19 @@ export default defineComponent({
margin-bottom: var(--space-md);
}

.wireframe-container {
.wireframe-header {
padding: 0 var(--space-lg);
}
.wireframe-container {
padding: 0;
}

:deep(.v-application__wrap) {
min-height: unset;
}

.main-content {
overflow-x: auto;
padding: 0;
}

Expand Down
Loading