@rivercoders/vue3-datagrid
Version:
Vue 3 DataGrid Spreadsheet
42 lines (36 loc) • 558 B
CSS
body, html {
height: 100%;
width: 100%;
padding: 20px;
margin: 0;
overflow: hidden;
background-color: #f7f9fc;
text-align: center;
}
revo-grid {
display: block;
}
.tile {
background-color: #fff;
display: flex;
margin: 0 auto;
padding: 20px 0;
box-shadow: 0 0 14px 0 rgba(53,64,82,.05);
border-radius: 10px;
overflow: hidden;
}
.arrow-down svg {
opacity: 1;
width: 10px;
height: 10px;
}
revo-grid {
width: 100%;
}
.tile.dark {
background-color: #333;
}
.tile.large {
width: 500px;
height: 400px;
}