Skip to content

Commit

Permalink
ci(tools): kanban styles
Browse files Browse the repository at this point in the history
  • Loading branch information
sadkodev committed Jul 30, 2023
1 parent 12f3aea commit 26ae445
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
54 changes: 54 additions & 0 deletions app/Plugins/_kanban.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
.kanban-plugin {
& .kanban-plugin__board {
background-color: var(--color-base-20);
border-radius: 0.8rem;

& .kanban-plugin__lane-wrapper {
border-radius: 0.8rem;

& .kanban-plugin__lane {
background-color: var(--color-base-30);

& .kanban-plugin__lane-header-wrapper {
border-bottom: 4px solid var(--color-base-20);
}

& .kanban-plugin__item-form {
background-color: var(--color-base-45);

& .kanban-plugin__item-input-wrapper {

background-color: var(--color-base-45);

& .kanban-plugin__grow-wrap {
& .kanban-plugin__item-input {
padding: 0.5rem 1rem;
border: 1px solid var(--color-base-35);
border-radius: 2rem;
}
}
}
}

& .kanban-plugin__item-button-wrapper {
border-top: 4px solid var(--color-base-20);
margin-top: 1rem;

& .kanban-plugin__new-item-button {
text-transform: uppercase;
font-weight: bold;
background-color: var(--color-base-00);
color: var(--color-base-35);
border-radius: 2rem;
border: 1px solid var(--color-base-35);
}

& .kanban-plugin__item-button-plus {
margin-right: 0.5rem;
font-size: 1.2rem;
}
}
}
}
}
}
2 changes: 1 addition & 1 deletion global/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// colors
$clr-bg: #212122;
$clr-bg: #11111e;
$clr-fg: #fff;
$clr-default: #d1d1ec;

Expand Down
2 changes: 2 additions & 0 deletions theme-tokyo-night.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@
@import './app/views/global';
@import './app//views/editor/list';
@import './app/views/editor/marks';

@import './app/Plugins/kanban';

0 comments on commit 26ae445

Please sign in to comment.