Skip to content

Commit

Permalink
fix: refactor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amitb0ra committed Dec 1, 2024
1 parent cf87b39 commit 5061134
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions src/style/app.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,10 @@

.btnsContainer {
display: flex;
align-items: center;
gap: 10px;
/* Adjust spacing between items */
margin: 2.5rem 0;
align-items: center;
gap: 10px;
/* Adjust spacing between items */
margin: 2.5rem 0;
}

.btnsContainer .btnsBlock {
Expand Down Expand Up @@ -617,11 +613,6 @@ hr {
}
}

.btnsContainer {
display: flex;
margin: 2rem 0;
}

.btnsContainer .btnsBlock {
display: flex;
width: max-content;
Expand Down Expand Up @@ -729,6 +720,15 @@ hr {
color: var(--bs-blue);
font-weight: 500;
cursor: pointer;
/* Prevent layout shift */
&::after {
display: block;
content: attr(data-text);
font-weight: 600;
height: 0;
overflow: hidden;
visibility: hidden;
}
}

.subTagsLink i {
Expand All @@ -747,6 +747,15 @@ hr {
.tagsBreadCrumbs {
color: var(--bs-gray);
cursor: pointer;
/* Prevent layout shift */
&::after {
display: block;
content: attr(data-text);
font-weight: 600;
height: 0;
overflow: hidden;
visibility: hidden;
}
}

.tagsBreadCrumbs:hover {
Expand Down

0 comments on commit 5061134

Please sign in to comment.