Skip to content

Commit

Permalink
fix(site): mobile layout on declarative yaml
Browse files Browse the repository at this point in the history
close #350
  • Loading branch information
tchiotludo committed Aug 7, 2023
1 parent c22c522 commit 7ce7940
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 104 deletions.
13 changes: 12 additions & 1 deletion components/features/declaratives/Features.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
</script>

<style lang="scss" scoped>
@import "../../../assets/styles/variable";
.container-fluid {
background-color: var(--bs-gray-200);
position: relative;
Expand All @@ -95,10 +98,17 @@
opacity: 0.3;
position: absolute;
top: 0;
background: url("/landing/shadow3.svg") no-repeat bottom center;
background: url("/landing/shadow3.svg") no-repeat 50% 150px;
@include media-breakpoint-down(md) {
& {
display: none;
}
}
}
}
.code {
position: relative;
background: var(--bs-white);
Expand All @@ -107,6 +117,7 @@
font-family: var(--bs-font-monospace);
color: var(--bs-indigo);
white-space: pre;
overflow: hidden;
.text-success {
color: #2C3F3A !important;
Expand Down
Loading

1 comment on commit 7ce7940

@vercel
Copy link

@vercel vercel bot commented on 7ce7940 Aug 7, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

kestra-io – ./

kestra-io-git-main-kestra.vercel.app
kestra-io-kestra.vercel.app
kestra-io.vercel.app

Please sign in to comment.