-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* run sass-migrator module --migrate-deps filename * manually migrate entrypoint * manual adjustments to get scss to build again and look ok * prefer relative assets * fix spacing on dashboard * move up spacing rather than having it on every header on patient edit page * fix header and footer * fix color of clinic finder and spacing on practical support updates * fix doofy html mistake
- Loading branch information
1 parent
d04dbf4
commit 0c4c230
Showing
32 changed files
with
150 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
// Major library config | ||
@import './styles/bootstrap'; | ||
@import './styles/vendor/jquery-ui'; | ||
@use './styles/bootstrap'; | ||
@use './styles/vendor/jquery-ui'; | ||
|
||
// Custom styling | ||
@import './styles/globals'; | ||
@import './styles/call_list'; | ||
@import './styles/devise'; | ||
@import './styles/users'; | ||
@import './styles/budget_bar'; | ||
@import './styles/clinic_finder'; | ||
@import './styles/calls'; | ||
@import './styles/pagination'; | ||
@import './styles/events'; | ||
@import './styles/patient_menu'; | ||
@import './styles/patient_edit'; | ||
@import './styles/tables'; | ||
@import './styles/footer'; | ||
@import './styles/modals'; | ||
@import './styles/navbar'; | ||
@import './styles/tooltips'; | ||
@import './styles/lines'; | ||
@import './styles/flash'; | ||
@import './styles/forms'; | ||
@import './styles/buttons'; | ||
@use './styles/globals'; | ||
@use './styles/call_list'; | ||
@use './styles/devise'; | ||
@use './styles/users'; | ||
@use './styles/budget_bar'; | ||
@use './styles/clinic_finder'; | ||
@use './styles/calls'; | ||
@use './styles/pagination'; | ||
@use './styles/events'; | ||
@use './styles/patient_menu'; | ||
@use './styles/patient_edit'; | ||
@use './styles/tables'; | ||
@use './styles/footer'; | ||
@use './styles/modals'; | ||
@use './styles/navbar'; | ||
@use './styles/tooltips'; | ||
@use './styles/lines'; | ||
@use './styles/flash'; | ||
@use './styles/forms'; | ||
@use './styles/buttons'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// Styling related to the budget bar utility. | ||
|
||
@import './_variables'; | ||
@use './_variables'; | ||
|
||
$budget-bar-font-size: 14px; | ||
|
||
.expenditure-block { | ||
border-right: 1px solid $black; | ||
color: $black !important; | ||
border-right: 1px solid variables.$black; | ||
color: variables.$black !important; | ||
font-size: $budget-bar-font-size; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
// Styling related to log-a-call modals. | ||
|
||
@import './_variables'; | ||
@use './_variables'; | ||
|
||
// Core new call modal | ||
.calls-layout { | ||
padding: 1rem .5rem 1rem 2rem; | ||
|
||
.calls-request { | ||
font-size: $font-size-large; | ||
font-size: variables.$font-size-large; | ||
} | ||
|
||
.calls-phone { | ||
font-size: $font-size-xlarge; | ||
font-size: variables.$font-size-xlarge; | ||
font-weight: 900; | ||
} | ||
|
||
.calls-response { | ||
font-size: $font-size; | ||
font-size: variables.$font-size; | ||
text-decoration: underline; | ||
} | ||
|
||
.calls-btn { | ||
font-size: $font-size; | ||
font-size: variables.$font-size; | ||
padding: 10px 40px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.