Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
634 Bytes
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);
}
}
}
}
`;