Skip to content

Commit

Permalink
removed comments from style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
rishirishhh committed Oct 12, 2024
1 parent 361168b commit 75af09a
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions extension-requests/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,32 +165,31 @@
.approve-button:hover {
background-color: var(--green500);
}

.skeleton {
width: 1.5rem; /* Adjust the width */
height: 1.5rem; /* Ensure height is the same as width */
border-radius: 50%; /* Makes it a circle */
animation: skeleton-loading 1s linear infinite alternate; /* Loading animation */
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-text,
.skeleton-link,
.skeleton-span {
width: 3rem; /* Common width for all skeleton elements */
height: 1rem; /* Common height for all skeleton elements */
width: 3rem;
height: 1rem;
background-color: hsl(200, 20%, 70%);
animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-link,
.skeleton-span,
.skeleton-text {
width: 8rem; /* Increased width for links, spans, and text */
width: 8rem;
display: inline-flex;
border-radius: 0.125rem; /* Less rounded corners */
line-height: 3rem; /* Align with the text height */
border-radius: 0.125rem;
line-height: 3rem;
}

/* Animation keyframes */
@keyframes skeleton-loading {
0% {
background-color: hsl(200, 20%, 70%);
Expand Down

0 comments on commit 75af09a

Please sign in to comment.