Skip to content

Commit

Permalink
CSS fixes, excluded folders, exception for text-wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
mgurgel committed Oct 14, 2024
1 parent 59301c5 commit dcd0077
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"extends": ["stylelint-config-standard"],
"plugins": ["stylelint-csstree-validator"],
"ignoreFiles": ["build/**/*.css", "Sources/**/*.css", "docs/**/*.css"],
"rules": {
"csstree/validator": true,
"csstree/validator": {
"ignoreProperties": ["text-wrap"]
},
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"color-function-notation": null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
.listGrid {
display: grid;
gap: var(--sp-9);
width: 100;
width: 100%;
}

.list {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ body:not([data-platform-name]) {
--button-text: var(--color-blue-50);

/* Active */
--button-bg--active: rgba(57, var(105, 239, 0.12));
--button-bg--active: rgba(57, 105, 239, 0.12);
--button-text--active: var(--color-blue-70);

/* Disabled */
Expand Down Expand Up @@ -208,7 +208,7 @@ body:not([data-platform-name]) {
--button-text: var(--color-blue-30);

/* Active */
--button-bg--active: rgba(114, var(149, 246, 0.2));
--button-bg--active: rgba(114, 149, 246, 0.2);
--button-text--active: var(--color-blue-20);

/* Disabled */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
a {
color: (--ddg-color-primary)
color: var(--ddg-color-primary)
}

.title-1 {
Expand Down

0 comments on commit dcd0077

Please sign in to comment.