add privacy page

This commit is contained in:
smanylov
2025-12-12 13:09:54 +07:00
parent 6cbf5d421a
commit d17337d817
2 changed files with 450 additions and 4 deletions
+40 -1
View File
@@ -53,13 +53,23 @@
ul {
margin-bottom: 16px;
padding-left: 24px;
}
li {
margin-bottom: 8px;
line-height: 1.7;
color: #1e293b;
&::before {
content: ' ';
display: inline-block;
width: 5px;
height: 5px;
border-radius: 2.5px;
background-color: #000;
margin-right: 10px;
margin-bottom: 4px;
}
}
}
@@ -97,4 +107,33 @@
padding-top: 32px;
border-top: 1px solid #94a3b833;
}
.data-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
th {
background: #f8fafc;
font-weight: 600;
color: #1e293b;
}
td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #94a3b833;
}
th,
td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #94a3b833;
}
}
}