TODO implementation and partial status implementation on the dashobard page

This commit is contained in:
inpsyde-maticluznar 2024-10-25 14:35:16 +02:00
parent 637a9c6dca
commit 2afc530af5
No known key found for this signature in database
GPG key ID: D005973F231309F6
23 changed files with 636 additions and 58 deletions

View file

@ -0,0 +1,67 @@
.ppcp-r-tab-dashboard-todo {
margin: 0 0 48px 0;
}
.ppcp-r-todo-item {
position: relative;
display: flex;
align-items: center;
gap: 18px;
width: 100%;
&:not(:last-child) {
border-bottom: 1px solid $color-gray-400;
padding-bottom: 24px;
}
&:not(:first-child) {
padding-top: 24px;
}
p {
@include font(14, 20, 400);
}
&__inner {
position: relative;
display: flex;
align-items: center;
gap: 18px;
}
&__close {
margin-left: auto;
&:hover {
cursor: pointer;
color: $color-blueberry;
}
}
}
.ppcp-r-feature-item {
padding-top: 32px;
border-top: 1px solid $color-gray-400;
&__title {
@include font(16, 20, 600);
color: $color-black;
display: block;
margin: 0 0 8px 0;
}
&__description {
@include font(14, 20, 400);
color: $color-gray-800;
margin: 0 0 18px 0;
}
&:not(:last-child) {
padding-bottom: 32px;
}
&__buttons {
display: flex;
gap: 18px;
}
}

View file

@ -34,6 +34,12 @@
.components-base-control__field {
margin: 0 0 24px 0;
}
.ppcp-r-toggle-block__toggled-content > button{
padding: 6px 12px;
@include font(13, 20, 500);
color: $color-white;
border: none;
}
}
.ppcp-r-welcome-features {
@ -81,3 +87,4 @@
}
}
}