Skip to content

Commit

Permalink
Migrate less to sass
Browse files Browse the repository at this point in the history
  • Loading branch information
anselmbradford committed Aug 2, 2024
1 parent 473713f commit 8b0a901
Show file tree
Hide file tree
Showing 191 changed files with 5,992 additions and 5,209 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use 'sass:math';

.m-autocomplete {
position: relative;

Expand All @@ -9,6 +11,7 @@
.m-autocomplete__results {
box-sizing: border-box;
width: 100%;

// Restrict height of autocomplete suggestions
// 'dropdown' box to 200px.
max-height: 200px;
Expand All @@ -27,7 +30,7 @@

&:hover,
&.m-autocomplete__selected {
background-color: @block--bg;
background-color: $block-bg;
}

&:last-child {
Expand All @@ -37,7 +40,7 @@

a {
display: block;
padding: unit(@grid_gutter-width / 4 / @base-font-size-px, em);
padding: math.div(math.div($grid-gutter-width, 4), $base-font-size-px) + em;
border-width: 0;
color: var(--black);
}
Expand Down
253 changes: 0 additions & 253 deletions cfgov/unprocessed/apps/ask-cfpb/css/main.less

This file was deleted.

Loading

0 comments on commit 8b0a901

Please sign in to comment.