c66d7ed489
* Use new eslint rules and apply fixes. Use new logo component and shared theme + webpack config. * Add shared component to display a copy icon and copy to clipboard with confirmation state * Organise imports * Add copy mixnode identity key to list of mixnodes and detail view * Update nvm node version to 16 * Update GitHub Actions for Network Explorer to use yarn and yarn workspaces * Switch favicon for smaller N icon * Update README * Add error boundary
35 lines
932 B
CSS
35 lines
932 B
CSS
/* last resort for styles that cannot be handled by Material UI and Emotion JS */
|
|
|
|
/* TODO - this override should take place in either
|
|
the theme declaration in index.tsx or the style prop
|
|
in <DataGrid /> */
|
|
|
|
.MuiDataGrid-sortIcon, .MuiDataGrid-menuIcon {
|
|
display: none !important;
|
|
}
|
|
|
|
.MuiDataGrid-columnSeparator {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* TODO - this should be managed somehow in MUI DataGrid
|
|
but documentation doesnt offer a way to do it. Possibly only
|
|
included in Data Grid Pro package */
|
|
.MuiDataGrid-header-override {
|
|
height: 55px;
|
|
min-height: 55px;
|
|
}
|
|
|
|
/* Again, no offered way to add sx to this specific div to kill the padding
|
|
which puts it out of sync with other (sx styled) cells */
|
|
div div.MuiDataGrid-root .MuiDataGrid-columnHeaderTitleContainer {
|
|
padding-left: 0;
|
|
}
|
|
|
|
@media screen and (max-width: 900px) {
|
|
.MuiDrawer-paperAnchorLeft {
|
|
min-width: 100vw;
|
|
margin-top: 58px;
|
|
}
|
|
}
|