32 lines
577 B
SCSS
32 lines
577 B
SCSS
@import '../../../assets/@theme/styles/themes';
|
|
|
|
.pentest-table {
|
|
// width: calc(78vw - 18%);
|
|
// width: 100%;
|
|
// width: calc(100% - 20rem);
|
|
margin-right: 2rem;
|
|
padding-right: 2rem;
|
|
|
|
.pentest-cell {
|
|
// Add style here
|
|
}
|
|
|
|
.pentest-cell:hover {
|
|
cursor: pointer;
|
|
background-color: nb-theme(color-basic-transparent-focus);
|
|
}
|
|
|
|
.disabled-objective {
|
|
background-color: nb-theme(color-control-transparent-disabled);
|
|
}
|
|
|
|
.disabled-objective:hover {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.cell-actions {
|
|
width: max-content;
|
|
max-width: 180px;
|
|
}
|
|
}
|