Skip to content

Commit

Permalink
style: format code with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 17, 2024
1 parent 164aeb0 commit 28de7f8
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions styles/pronouns.cc/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
var(--bs-bg-opacity)
) !important;
}

}

#catppuccin(@lookup, @accent) {
Expand Down Expand Up @@ -84,7 +83,7 @@
}
.form-control:focus {
border-color: @accent-color;
box-shadow: 0 0 0 .25rem fade(@accent-color, 25%);
box-shadow: 0 0 0 0.25rem fade(@accent-color, 25%);
}
--bs-border-color: @surface1;
--bs-border-color-translucent: @surface0;
Expand Down Expand Up @@ -233,12 +232,16 @@
.btn-close-white,
.btn-close {
--bs-btn-close-color: @surface0;
@svg: escape('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="@{surface1}"><path d="M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414"/></svg>');
@svg: escape(
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="@{surface1}"><path d="M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414"/></svg>'
);
--bs-btn-close-bg: url("data:image/svg+xml,@{svg}");
--bs-btn-close-opacity: 1.0;
--bs-btn-close-opacity: 1;
}
.navbar-toggler-icon {
@svg: escape('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path stroke="@{surface1}" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/></svg>');
@svg: escape(
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path stroke="@{surface1}" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/></svg>'
);
--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,@{svg}");
}
}
Expand Down

0 comments on commit 28de7f8

Please sign in to comment.