File size: 634 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import styled from "styled-components";
export const Container = styled.div`
max-width: 100vw;
max-height: 100vh;
display: grid;
grid-template-rows: 85vh 15vh;
.dash_body {
display: grid;
grid-template-columns: 15vw 85vw;
height: 100%;
width: 100%;
background: linear-gradient(transparent, rgba(0, 0, 0, 1));
background-color: rgb(32, 87, 100);
.body {
height: 100%;
width: 100%;
overflow: auto;
&::-webkit-scrollbar {
width: 0.7rem;
max-height: 2rem;
&-thumb {
background-color: rgba(255, 255, 255, 0.6);
}
}
}
}
`;
|