Lin / frontend /src /App.css
Zelyanoth's picture
fff
25f22bf
raw
history blame
698 Bytes
/* App.css - Basic application styles */
.App {
text-align: center;
}
.loading {
padding: 20px;
font-family: 'Roboto', sans-serif;
color: #333;
}
/* Error boundary styles */
.error-boundary {
padding: 20px;
text-align: center;
border: 1px solid #ff4444;
border-radius: 8px;
background-color: #ffeeee;
margin: 20px;
}
.error-boundary h2 {
color: #cc0000;
margin-bottom: 10px;
}
.error-boundary p {
color: #666;
margin-bottom: 15px;
}
.error-boundary button {
background-color: #cc0000;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
.error-boundary button:hover {
background-color: #990000;
}