diff --git a/.stylelintrc.json b/.stylelintrc.json index c91107595..afdfd5f5b 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -12,6 +12,8 @@ "custom-property-pattern": null, "keyframes-name-pattern": null, "scss/operator-no-newline-after": null, + "declaration-property-value-no-unknown": true, + "scss/declaration-property-value-no-unknown": true, "declaration-block-no-redundant-longhand-properties": [ true, { diff --git a/changelog.d/linter.skip b/changelog.d/linter.skip new file mode 100644 index 000000000..e69de29bb diff --git a/changelog.d/user_profile_redesign.change b/changelog.d/user_profile_redesign.change new file mode 100644 index 000000000..27fc5f890 --- /dev/null +++ b/changelog.d/user_profile_redesign.change @@ -0,0 +1 @@ +User card/profile got an overhaul diff --git a/src/App.scss b/src/App.scss index d56306c9e..64c8b8b82 100644 --- a/src/App.scss +++ b/src/App.scss @@ -525,6 +525,10 @@ textarea { height: unset; } + &::placeholder { + color: var(--textFaint) + } + --_padding: 0.5em; border: none; @@ -1075,7 +1079,7 @@ option { scale: 1.0063 0.9938; translate: 0 -10%; transform: rotateZ(var(--defaultZ)); - animation-timing-function: ease-in-ou; + animation-timing-function: ease-in-out; } 90% { diff --git a/src/components/account_actions/account_actions.vue b/src/components/account_actions/account_actions.vue index f3cca45d0..cc00a735d 100644 --- a/src/components/account_actions/account_actions.vue +++ b/src/components/account_actions/account_actions.vue @@ -3,7 +3,6 @@