Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bidyashish committed Feb 19, 2025
1 parent c7873fc commit bfd087e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 23 deletions.
3 changes: 1 addition & 2 deletions sources/packages/web/src/assets/css/base.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
@use "./global-style-variables.scss" as *;

@import "./global-style-variables.scss";
html * {
font-family: "BCSans", "Noto Sans", Verdana, Arial, sans-serif;
font-style: $font-style-normal;
Expand Down
2 changes: 1 addition & 1 deletion sources/packages/web/src/assets/css/formio-shared.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "./global-style-variables.scss" as *;
@import "./global-style-variables.scss";
@import "./base.scss";

/** Primary theme color of the application**/
Expand Down
2 changes: 1 addition & 1 deletion sources/packages/web/src/assets/css/institution.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "./global-style-variables.scss" as *;
@import "./global-style-variables.scss";

.color-blue {
color: $brand-blue;
Expand Down
2 changes: 1 addition & 1 deletion sources/packages/web/src/assets/css/notes.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "./global-style-variables.scss" as *;
@import "./global-style-variables.scss";
/** Styles for the note component overriding the color and typography of timeline */

.content-header {
Expand Down
2 changes: 1 addition & 1 deletion sources/packages/web/src/assets/css/student.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "./global-style-variables.scss" as *;
@import "./global-style-variables.scss";
.application-info-border {
padding: 2%;
border-style: solid;
Expand Down
20 changes: 3 additions & 17 deletions sources/packages/web/src/assets/css/vuetify.scss
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
@use "./global-style-variables.scss" as *;
@use "./base.scss" as base;

// Tooltip main style
.tooltip-style {
padding: 0.75em 1em;
border-radius: 8px;
font-size: $font-size-xsmall;
font-weight: $font-weight-normal;
color: #fff;
background-color: rgba(51, 51, 51, 0.95);
}
@import "./base.scss";

.v-btn {
text-transform: none !important;
Expand Down Expand Up @@ -180,7 +169,7 @@
}

.v-overlay-container .v-tooltip .v-overlay__content {
@extend .tooltip-style !optional;
@extend .tooltip-style;
}

// Changes the background of readonly inputs.
Expand All @@ -195,8 +184,5 @@
}

.label-bold-menu .v-list-item .v-list-item-title {
@extend .label-bold !optional;
font-size: $font-size-content !important;
line-height: $line-height-header-sm !important;
font-weight: $font-weight-bold !important;
@extend .label-bold;
}

0 comments on commit bfd087e

Please sign in to comment.