mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
26 lines
441 B
TypeScript
26 lines
441 B
TypeScript
import styled from "styled-components";
|
|
|
|
const StyledGetMoreMessages = styled.li`
|
|
background-color: rgba(68, 69, 70, 50%);
|
|
|
|
&:hover {
|
|
background-color: rgba(68, 69, 70, 80%);
|
|
}
|
|
|
|
button {
|
|
color: inherit;
|
|
display: flex;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
height: 30px;
|
|
place-content: center;
|
|
place-items: center;
|
|
|
|
&:disabled {
|
|
opacity: 25%;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledGetMoreMessages;
|