Spaces:
Building
Building
// Tab içeriği için padding | |
.mat-tab-body-content { | |
padding: 24px; | |
} | |
.app-container { | |
padding: 20px; | |
min-height: 100vh; | |
background-color: #f5f5f5; | |
} | |
.header { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
margin-bottom: 20px; | |
padding: 15px 20px; | |
background: white; | |
border-radius: 8px; | |
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | |
h1 { | |
margin: 0; | |
color: #333; | |
font-size: 24px; | |
} | |
.header-actions { | |
display: flex; | |
align-items: center; | |
gap: 20px; | |
.user-info { | |
display: flex; | |
align-items: center; | |
gap: 10px; | |
color: #666; | |
mat-icon { | |
font-size: 20px; | |
} | |
} | |
button { | |
mat-icon { | |
margin-right: 4px; | |
} | |
} | |
} | |
} | |
.main-content { | |
background: white; | |
border-radius: 8px; | |
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | |
overflow: hidden; | |
mat-tab-group { | |
::ng-deep { | |
.mat-tab-header { | |
background-color: #fafafa; | |
border-bottom: 1px solid #e0e0e0; | |
} | |
.mat-tab-label { | |
min-width: 120px; | |
opacity: 0.8; | |
&.mat-tab-label-active { | |
opacity: 1; | |
font-weight: 500; | |
} | |
} | |
.mat-tab-body-wrapper { | |
padding: 24px; | |
} | |
} | |
} | |
} | |
// Responsive adjustments | |
@media (max-width: 768px) { | |
.app-container { | |
padding: 10px; | |
} | |
.header { | |
flex-direction: column; | |
gap: 15px; | |
text-align: center; | |
h1 { | |
font-size: 20px; | |
} | |
} | |
.main-content { | |
mat-tab-group ::ng-deep .mat-tab-body-wrapper { | |
padding: 16px; | |
} | |
} | |
} |