mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
Add hook to fix table header to detail header
This commit is contained in:
parent
14e6b4e7d6
commit
b59c86f78f
4 changed files with 48 additions and 0 deletions
15
src/renderer/styles/ag-grid.scss
Normal file
15
src/renderer/styles/ag-grid.scss
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
.ag-header-fixed {
|
||||
position: fixed !important;
|
||||
top: 61px;
|
||||
z-index: 5;
|
||||
background: #181818 !important;
|
||||
margin: 0 -24px;
|
||||
padding: 0 24px;
|
||||
border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
|
||||
box-shadow: 0 -1px 0 0 #181818;
|
||||
transition: position 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.ag-header-fixed-margin {
|
||||
margin-top: 49px !important;
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
@use '../themes/default.scss';
|
||||
@use '../themes/dark.scss';
|
||||
@use '../themes/light.scss';
|
||||
@use './ag-grid.scss';
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue