Skip to content

Commit

Permalink
fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
gxskpo committed Oct 21, 2024
1 parent 47ad6a3 commit d3f2220
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,24 +178,21 @@ body {
box-shadow: var(--shadow1);
}

.group:hover .skillTooltip {
@apply block;
}

.skillTooltip {
@apply absolute -top-8 text-center bg-opacity-100 hidden rounded-md p-1 mb-4;
background-color: var(--surface0);
}

.projectSectionSelector {
display: flex;
flex-direction: row;
gap: 1rem;
justify-content: center;
align-items: center;
border-radius: 0.75rem;
padding: 0.7rem;
@apply flex flex-row gap-4 justify-center items-center p-3 rounded-xl;
box-shadow: var(--shadow0);
}
.projectSectionSelector > button {
padding: 0.45rem;
border-radius: 0.5rem;
@apply p-2 rounded-lg;
--btn-shadow: none;
box-shadow: var(--btn-shadow);
transition-duration: 0.2s;
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["**.html, styles/**.css"],
content: ["**.html", "styles/**.css", "src/**.rs"],
theme: {
extend: {},
},
Expand Down

0 comments on commit d3f2220

Please sign in to comment.