Skip to content

Commit

Permalink
Removed box shadow from front page
Browse files Browse the repository at this point in the history
On the live server the portrays show a weird
box shadow. This patch should remove it.
  • Loading branch information
OvrK12 committed Apr 30, 2024
1 parent 7ec1122 commit f2a6e69
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths-ignore:
- README.md

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
3 changes: 3 additions & 0 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,9 @@ footer.sticky-bottom {


// Publications
.publications ol {
list-style-type: none;
}

.publications .item {
display: none;
Expand Down
8 changes: 4 additions & 4 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ body.sticky-bottom-footer {
}

.card {
-webkit-box-shadow: 0 0 0 0;
box-shadow: 0 0 0 0;
-webkit-box-shadow: none;
box-shadow: none;
}

.hoverable:hover {
-webkit-box-shadow: 0 0 0 0;
box-shadow: 0 0 0 0;
-webkit-box-shadow: none;
box-shadow: none;
}

h2.card-title {
Expand Down

0 comments on commit f2a6e69

Please sign in to comment.