A migration workedcd ../.. Marking a learner as complete is done. Woohoo.
This commit is contained in:
@ -0,0 +1,52 @@
|
||||
/*
|
||||
Put your custom overlay styles in here
|
||||
You can use your northpass color palette in this file
|
||||
|
||||
{{ color_palette.button_font_color }}
|
||||
{{ color_palette.button_color }}
|
||||
{{ color_palette.button_hover_color }}
|
||||
{{ color_palette.header_font_color }}
|
||||
{{ color_palette.header_font_hover_color }}
|
||||
{{ color_palette.header_color }}
|
||||
*/
|
||||
|
||||
.green-status{
|
||||
color: green;
|
||||
}
|
||||
|
||||
.green-bar,
|
||||
.green-button{
|
||||
background: green;
|
||||
}
|
||||
|
||||
.green-button{
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* @media screen and (min-width: 0px){ */
|
||||
.np-card-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
/* } */
|
||||
|
||||
.np-learning-path{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.np-learning-path-image {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
width: 33%;
|
||||
}
|
||||
|
||||
.np-mobile-view{
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.np-mobile-view{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user