mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
Fix stylelint ordering
This commit is contained in:
parent
cdf44f0119
commit
872d1d1be1
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ const StyledInfo = styled.li`
|
|||
|
||||
figure {
|
||||
display: flex;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
padding-left: 15px;
|
||||
|
||||
figcaption {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@ const StyledMessage = styled.li<StyledMessageProps>`
|
|||
$writing &&
|
||||
css`
|
||||
&::after {
|
||||
content: "";
|
||||
border-left: 1px solid #000;
|
||||
content: "";
|
||||
}
|
||||
`}
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user