import styled from '@emotion/styled' export const Container = styled.div<{ $pagination?: boolean }>` width: 100%; position: relative; height: 100%; display: flex; flex-direction: column; gap: 12px; *::-webkit-scrollbar { width: var(--rdg-scrollbar-width) !important; height: var(--rdg-scrollbar-height) !important; } *::-webkit-scrollbar-thumb { background-color: var(--rdg-scrollbar-thumb-background) !important; border-radius: 8px; border: none; } *::-webkit-scrollbar-track { background-color: var(--rdg-scrollbar-track-background) !important; border-radius: 8px; } *::-webkit-scrollbar-thumb:hover { background-color: var(--rdg--scrollbar-thumb-hover-background) !important; } *::-webkit-scrollbar-track:hover { background-color: var(--rdg--scrollbar-track-hover-background) !important; } > div:first-child { flex-grow: 1; overflow: hidden; } .rdg { border: none; block-size: 100%; } * { font-weight: var(--rdg-font-weight) !important; line-height: var(--rdg-line-height) !important; font-family: var(--rdg-font-family) !important; border: none; } .rdg-header-row { font-size: var(--rdg-header-font-size) !important; color: var(--rdg-header-color); } .rdg-cell { padding: var(--rdg-cell-padding) !important; } .rdg-no-data { text-align: center; grid-column: 1/-1; } .rdg-cell-resizable { > div { width: 5px; cursor: col-resize; background-color: var(--rdg-border-color); opacity: 0; transition: opacity 0.2s ease; position: absolute; top: 0; right: -2.5px; bottom: 0; &:hover { opacity: 0.5; } } } .rdg-row { &[aria-selected='true'] { .rdg-cell { color: var(--rdg-row-selected-color); } } &.first-row { .rdg-cell { border-top: solid var(--rdg-border-size) var(--rdg-border-color); } .rdg-cell:first-child { border-top-left-radius: var(--rdg-border-radius-container); } .rdg-cell:last-child { border-top-right-radius: var(--rdg-border-radius-container); } } &.last-row { .rdg-cell:first-child { border-bottom-left-radius: var(--rdg-border-radius-container); } .rdg-cell:last-child { border-bottom-right-radius: var(--rdg-border-radius-container); } } .rdg-cell { border-bottom: solid var(--rdg-border-size) var(--rdg-border-color); &:first-child { border-left: solid var(--rdg-border-size) var(--rdg-border-color); } &:last-child { border-right: solid var(--rdg-border-size) var(--rdg-border-color); } } } `