Skip to content
Draft
Show file tree
Hide file tree
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: 5 additions & 5 deletions app/assets/stylesheets/application.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import 'bootstrap/scss/bootstrap';
@import 'bootstrap-icons/font/bootstrap-icons';
@import 'slim-select/src/slim-select/slimselect';
@import 'crud';
@import 'styles';
@use 'bootstrap/scss/bootstrap';
@use 'bootstrap-icons/font/bootstrap-icons';
@use 'slim-select/src/slim-select/slimselect';
@use 'crud';
@use 'styles';
1 change: 0 additions & 1 deletion app/assets/stylesheets/crud.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

h1 {
margin-bottom: 20px;
}
Expand Down
12 changes: 7 additions & 5 deletions app/assets/stylesheets/styles.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use 'bootstrap/scss/bootstrap' as bs;

$skills-blue: #3b7bbe;
$skills-text-gray: #8e8e8e;
$skills-gray: #f5f5f5;
Expand All @@ -21,7 +23,7 @@ $skills-dark-blue: #1e5a96;
.content {
max-width: 80%;
flex-grow: 1;
@include media-breakpoint-down(lg) {
@include bs.media-breakpoint-down(lg) {
max-width: 95%;
}
}
Expand Down Expand Up @@ -71,7 +73,7 @@ pzsh-topbar {

.skill-row {
height: 100px !important;
border-bottom: 2px solid $secondary-bg-subtle !important;
border-bottom: 2px solid bs.$secondary-bg-subtle !important;
}

.interest,
Expand All @@ -80,7 +82,7 @@ pzsh-topbar {
}

.table-row:hover {
background-color: $light;
background-color: bs.$light;
}

.profile-header {
Expand Down Expand Up @@ -426,7 +428,7 @@ a > img {
font-size: 50px;
}

@include media-breakpoint-up(lg) {
@include bs.media-breakpoint-up(lg) {
.h-100-lg {
height: 100%;
}
Expand All @@ -444,7 +446,7 @@ a > img {
}
}

@include media-breakpoint-down(lg) {
@include bs.media-breakpoint-down(lg) {
.responsive-hide {
display: none;
}
Expand Down