mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
27 lines
513 B
TypeScript
27 lines
513 B
TypeScript
import styled from "styled-components";
|
|
|
|
const StyledAIButton = styled.div`
|
|
display: flex;
|
|
height: 100%;
|
|
place-content: center;
|
|
place-items: center;
|
|
position: absolute;
|
|
right: 0;
|
|
width: ${({ theme }) => theme.sizes.taskbar.ai.buttonWidth};
|
|
|
|
svg {
|
|
height: 22px;
|
|
width: 22px;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: ${({ theme }) => theme.colors.taskbar.hover};
|
|
}
|
|
|
|
&:active {
|
|
background-color: ${({ theme }) => theme.colors.taskbar.foreground};
|
|
}
|
|
`;
|
|
|
|
export default StyledAIButton;
|