styles.scss 423 B

12345678910111213141516171819202122
  1. @import 'styles/_variables.scss';
  2. .cbk-navbar {
  3. background-color: white;
  4. margin: $spacing-regular 0;
  5. padding: $spacing-regular;
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. align-items: center;
  10. &__content {
  11. flex-basis: 75%;
  12. display: flex;
  13. align-items: center;
  14. justify-content: flex-end;
  15. & > *:not(:last-child) {
  16. margin-right: $spacing-regular;
  17. }
  18. }
  19. }