Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions offline.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ <h2 class="section-title gradient-text">📍 Our Service Centers</h2>
card.className = 'card animate-card';
card.style.animationDelay = `${0.2 + index * 0.1}s`;
card.innerHTML = `
<h3>📍 ${center.city}</h3>
<h3>${center.city}</h3>
<p><strong>${center.name}</strong></p>
<p>🌍 Located in ${center.city}</p>
<p>Located in ${center.city}</p>
<p>📞 ${center.contact}</p>
`;

Expand Down
6 changes: 4 additions & 2 deletions src/assets/styles/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ body.dark-mode .container{
color: white;
}

body.dark-mode .contact-link ,.contact-time{
body.dark-mode .contact-time{
color: white;
}
body.dark-mode .contact-link{
color: white;
}

.contact-link{
color: var(--carolina-blue);
text-decoration: none;
Expand Down
7 changes: 6 additions & 1 deletion styles/offline.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,18 @@ h1 {
justify-content: center;
gap: 20px;
padding: 20px;
align-items: center;
}

.card {
text-align: center;
/* display: flex; */
/* justify-content: center; */
align-items: center;
background: #fff;
border-radius: 10px;
padding: 16px;
width: 250px;
width: 350px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: left;
transition: transform 0.2s ease;
Expand Down