Fixing bad styling decisions

This commit is contained in:
Fred Boniface 2023-05-08 22:03:07 +01:00
parent abbceee88d
commit d780a6fd88
2 changed files with 9 additions and 0 deletions

View File

@ -199,6 +199,7 @@ async function showCalls(id) {
/* Prepare then insert DOM Data */
let dom = ` <div id="${id}" class="call-data">
<p class="close-data" onclick="hideCalls('${id}')">X</p>
<p class="call-table-description">Click on a stations name to go to it's departure board</p>
<table class="call-table">
<tr>
<th class="detail-name-head">Location</th>

View File

@ -285,6 +285,14 @@ caption{
width: 90%;
}
.call-table-description {
color: var(--second-text-color)
}
.detail-name a {
text-decoration: none;
}
.detail-name-here {
color: var(--board-name-color);
}