Skip to content

Commit

Permalink
Make the horizontal stripes.
Browse files Browse the repository at this point in the history
  • Loading branch information
wparad committed Apr 28, 2024
1 parent caf8f16 commit 44b0643
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,9 @@ import Home from './components/home.vue';
color: unset;
text-decoration: none;
}
&:hover {
background-color: darken($primary, 10%);
}
}
</style>
2 changes: 1 addition & 1 deletion src/components/homeNavbar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div style="margin-bottom: 4rem;">
<div style="margin-bottom: 59px;">
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark border-bottom">
<div class="container-fluid">
<a class="navbar-brand pointer" @click.prevent="navigateTo()">The SOC2 FYI</a>
Expand Down
11 changes: 11 additions & 0 deletions src/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ html, body {
cursor: pointer;
}

#app {
background-image: repeating-linear-gradient(
/* 28deg, */
10deg,
map-get($theme-colors, "primary") 100px,
map-get($theme-colors, "primary") 1000px,
darken(map-get($theme-colors, "primary"), 5%) 1000px,
darken(map-get($theme-colors, "primary"), 5%) 1150px
);
}

// Overrides

@include media-breakpoint-down(md) {
Expand Down

0 comments on commit 44b0643

Please sign in to comment.