feat(LOY-346): Add modal to LevelProgressCard * Added LevelProgressModal with styles in LevelProgressCard. Also added compareAllLevels LangRoute in webHrefs * feat(LOY-346): Smaller changes based on comments * feat(LOY-346): Changed paragraph to time, added textdecoration:underline, changed dialog css * feat(LOY-346): Changed title size:) * feat(LOY-346): Changed dates-arrow icon to in text Approved-by: Chuma Mcphoy (We Ahead) Approved-by: Matilda Landström
39 lines
509 B
CSS
39 lines
509 B
CSS
.infoButton {
|
|
grid-column: 2;
|
|
grid-row: 1 / 3;
|
|
align-self: start;
|
|
}
|
|
|
|
.levelProgressModal {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
padding-bottom: var(--Space-x1);
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.dates {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.linkText {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.dialog {
|
|
max-width: 560px;
|
|
}
|
|
}
|