mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-10-30 00:05:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			484 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			484 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .breadcrumb {
 | |
|   padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
 | |
|   margin-bottom: $spacer-y;
 | |
|   list-style: none;
 | |
|   background-color: $breadcrumb-bg;
 | |
|   @include border-radius($border-radius);
 | |
|   @include clearfix;
 | |
| 
 | |
|   > li {
 | |
|     float: left;
 | |
| 
 | |
|     + li::before {
 | |
|       padding-right: .5rem;
 | |
|       padding-left: .5rem;
 | |
|       color: $breadcrumb-divider-color;
 | |
|       content: "#{$breadcrumb-divider}";
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   > .active {
 | |
|     color: $breadcrumb-active-color;
 | |
|   }
 | |
| }
 |