Fix stylelint ordering

This commit is contained in:
Dustin Brett 2023-03-19 21:26:08 -07:00
parent cdf44f0119
commit 872d1d1be1
6 changed files with 6 additions and 5 deletions

View File

@ -7,6 +7,7 @@
"color-function-notation": "legacy",
"declaration-empty-line-before": null,
"hue-degree-notation": "number",
"order/properties-alphabetical-order": true,
"rule-empty-line-before": null,
"value-keyword-case": null
}

View File

@ -12,8 +12,8 @@ const StyledChat = styled.div`
ul {
${ScrollBars(DEFAULT_SCROLLBAR_WIDTH)};
height: 100%;
overflow-y: scroll;
height: 100%;
padding-bottom: 84px;
position: relative;
}

View File

@ -5,8 +5,8 @@ const StyledInfo = styled.li`
figure {
display: flex;
font-weight: 400;
font-size: 14px;
font-weight: 400;
padding-left: 15px;
figcaption {

View File

@ -9,8 +9,8 @@ const StyledLoadingEllipsis = styled.span<StyledLoadingEllipsisProps>`
opacity: ${({ $showLoading }) => ($showLoading ? "100%" : "0%")};
position: absolute;
right: 24px;
transition: opacity 0.1s ease-in-out;
top: 18px;
transition: opacity 0.1s ease-in-out;
width: 32px;
&::after {

View File

@ -29,8 +29,8 @@ const StyledMessage = styled.li<StyledMessageProps>`
$writing &&
css`
&::after {
content: "";
border-left: 1px solid #000;
content: "";
}
`}

View File

@ -2,8 +2,8 @@ import styled from "styled-components";
const StyledOpenType = styled.div`
font-size: 13px;
overflow-y: scroll;
overflow-x: hidden;
overflow-y: scroll;
ol {
&:not(:last-child) {