mirror of
				https://github.com/sissbruecker/linkding.git
				synced 2025-11-03 20:44:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			553 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			553 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Toasts */
 | 
						|
.toast {
 | 
						|
  background: var(--gray-600);
 | 
						|
  border-radius: var(--border-radius);
 | 
						|
  color: var(--contrast-text-color);
 | 
						|
  display: block;
 | 
						|
  padding: var(--layout-spacing);
 | 
						|
  width: 100%;
 | 
						|
 | 
						|
  &.toast-primary {
 | 
						|
    background: var(--primary-color);
 | 
						|
  }
 | 
						|
 | 
						|
  &.toast-success {
 | 
						|
    background: var(--success-color);
 | 
						|
  }
 | 
						|
 | 
						|
  &.toast-warning {
 | 
						|
    background: var(--warning-color);
 | 
						|
  }
 | 
						|
 | 
						|
  &.toast-error {
 | 
						|
    background: var(--error-color);
 | 
						|
  }
 | 
						|
 | 
						|
  .btn-clear {
 | 
						|
    margin: var(--unit-h);
 | 
						|
  }
 | 
						|
 | 
						|
  p {
 | 
						|
    &:last-child {
 | 
						|
      margin-bottom: 0;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |