grtsinry43 5c3d956de9
feat: Add "Task List" and "Settings" pages with initial navigation setup
- Created `pages/list` for managing and displaying to-do tasks.
- Created `pages/settings` as a placeholder for application settings.
- Updated `pages/index` for a refreshed layout with navigation to "Tasks" and "Settings".
- Integrated custom tab bar across all pages for seamless transitions.
2025-06-09 13:30:02 +08:00

40 lines
584 B
Plaintext

/* pages/settings/settings.wxss */
page {
display: flex;
flex-direction: column;
height: 100vh;
background-color: #f4f4f4;
}
.container {
display: flex;
flex-direction: column;
flex: 1;
padding-bottom: 120rpx; /* Space for tab bar */
}
.content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40rpx;
text-align: center;
color: #555;
}
.content .t-icon {
margin-bottom: 20rpx;
color: #0052d9;
}
.custom-tab-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 1000;
}