mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-03 18:43:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			814 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			814 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@import "core/static/core/colors";
 | 
						|
 | 
						|
.quantity {
 | 
						|
  display: inline-block;
 | 
						|
  min-width: 1.2em;
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
.remove-item {
 | 
						|
  float: right;
 | 
						|
}
 | 
						|
 | 
						|
.basket-error-container {
 | 
						|
  position: relative;
 | 
						|
  display: block
 | 
						|
}
 | 
						|
 | 
						|
.basket-error {
 | 
						|
  z-index: 10; // to get on top of tomselect
 | 
						|
  text-align: center;
 | 
						|
  position: absolute;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
#bar-ui {
 | 
						|
  padding: 0.4em;
 | 
						|
  display: flex;
 | 
						|
  flex-wrap: wrap;
 | 
						|
  flex-direction: row-reverse;
 | 
						|
}
 | 
						|
 | 
						|
#products {
 | 
						|
  flex-basis: 100%;
 | 
						|
  margin: 0.2em;
 | 
						|
  overflow: auto;
 | 
						|
}
 | 
						|
 | 
						|
#click-form {
 | 
						|
  flex: auto;
 | 
						|
  margin: 0.2em;
 | 
						|
  width: 20%;
 | 
						|
  min-width: 350px;
 | 
						|
 | 
						|
  ul {
 | 
						|
    list-style-type: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
#user_info {
 | 
						|
  flex: auto;
 | 
						|
  padding: 0.5em;
 | 
						|
  margin: 0.2em;
 | 
						|
  height: 100%;
 | 
						|
  background: $secondary-neutral-light-color;
 | 
						|
 | 
						|
  img {
 | 
						|
    max-width: 70%;
 | 
						|
  }
 | 
						|
 | 
						|
  input {
 | 
						|
    background: white;
 | 
						|
  }
 | 
						|
} |