Skip to content

Commit

Permalink
feat: lti utils
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Jan 18, 2022
1 parent a7d67a2 commit 792e369
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions assets/stylesheets/_utils.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,36 @@
-ms-user-select: text; /* IE 10+ */
user-select: text !important;
}

.px-3 {
padding-left: .9375rem !important;
padding-right: .9375rem !important;
}

.py-2 {
padding-top: .46875rem !important;
padding-bottom: .46875rem !important;
}

.d-block {
display: block !important;
}

.d-flex {
display: flex !important;
}

.text-truncate {
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.align-items-center {
align-items: center !important;
}

.justify-content-between {
justify-content: space-between !important;
}

0 comments on commit 792e369

Please sign in to comment.