mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
28 lines
475 B
SCSS
28 lines
475 B
SCSS
.split-navigation {
|
|
/* Content is centered horizontally */
|
|
align-items: center;
|
|
display: flex;
|
|
|
|
/* Reset styles */
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0 0 0.5rem 0;
|
|
|
|
/* Demo */
|
|
border-bottom: 1px solid #d1d5db;
|
|
width: 8rem;
|
|
}
|
|
|
|
.split-navigation__item {
|
|
margin-right: 0.25rem;
|
|
|
|
/* Demo */
|
|
width: 1.25rem;
|
|
}
|
|
|
|
.split-navigation__item--right {
|
|
/* Sticks to the right */
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|