daedalOS/components/system/Dialogs/OpenWith/StyledOpenWith.ts
Dustin Brett e55cca1427
Some checks failed
Tests / tests (push) Has been cancelled
Pkg upgrades
2025-04-09 22:17:22 -07:00

57 lines
853 B
TypeScript

import styled from "styled-components";
const StyledOpenWith = styled.div`
display: flex;
flex-direction: column;
height: 100%;
div {
height: calc(100% - 56px - 80px);
overflow-y: scroll;
}
h2,
h4 {
font-weight: 400;
}
h2 {
font-size: 18px;
height: 56px;
padding: 16px 24px;
}
h4 {
padding: 0 0 6px 23px;
}
nav {
background-color: #fff;
height: 80px;
width: 100%;
button {
background-color: rgb(204 204 204);
color: #000;
font-size: 15px;
font-weight: 600;
height: 32px;
margin: 24px;
position: absolute;
right: 0;
width: 200px;
&:hover {
background-color: rgb(216 216 216);
}
&:active {
background-color: #000;
color: #fff;
}
}
}
`;
export default StyledOpenWith;