mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:42:45 +00:00 
			
		
		
		
	 a613a0973e
			
		
	
	
		a613a0973e
		
	
	
	
	
		
			
			item_incurred_increase should be reset before every next distirbution because otherwise it will accumulate increases from previous distributions which is not supposed to happen.
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			348 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			348 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| .container {
 | |
|     float: left;
 | |
|     display: grid;
 | |
|     background-color: lightsalmon;
 | |
|     grid-template-columns: 1fr 1fr;
 | |
| }
 | |
| 
 | |
| .item {
 | |
|     background-color: lightblue;
 | |
| }
 | |
| </style>
 | |
| <div class="container"><div class="item">some-text</div><div class="item">goes-here</div><div class="item">another-text</div><div class="item">goes-there</div></div> |