mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-13 06:04:13 -04:00
24 lines
602 B
CSS
24 lines
602 B
CSS
#learn-app-wrapper .desktop-layout {
|
|
height: calc(100vh - var(--header-height));
|
|
}
|
|
|
|
#learn-app-wrapper .reflex-container.vertical .reflex-splitter:hover {
|
|
border-left: 2px solid #006400;
|
|
border-right: 2px solid #006400;
|
|
background-color: #006400;
|
|
}
|
|
|
|
#learn-app-wrapper .reflex-container.vertical > .reflex-splitter {
|
|
width: 5px;
|
|
}
|
|
|
|
#learn-app-wrapper .reflex-container.horizontal .reflex-splitter:hover {
|
|
border-top: 2px solid #006400;
|
|
border-bottom: 2px solid #006400;
|
|
background-color: #006400;
|
|
}
|
|
|
|
#learn-app-wrapper .reflex-container.horizontal > .reflex-splitter {
|
|
height: 5px;
|
|
}
|