daedalOS/components/apps/Messenger/StyledGetMoreMessages.ts
2025-01-12 11:24:14 -08:00

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;