apparatus-entry.component.scss 655 B

123456789101112131415161718192021222324252627
  1. @import '../../../assets/scss/themes';
  2. .app-entry {
  3. &.app-detail-opened {
  4. > .app-entry-lem {
  5. position: relative;
  6. z-index: 1;
  7. padding-bottom: 0.313rem;
  8. @include themify($themes) {
  9. border: 1px solid themed('baseBorder');
  10. border-bottom: 0;
  11. }
  12. }
  13. }
  14. }
  15. .app-entry-lem {
  16. // TODO: Change background color when variance is handled
  17. @include themify($themes) {
  18. background-color: #ccc;
  19. //background-color: themed('appEntryBoxBackground');
  20. }
  21. cursor: pointer;
  22. .app-entry-lem {
  23. background-color: gray;
  24. }
  25. }