Fixed colors for resource tags
This commit is contained in:
		
				
					committed by
					
						
						fabioberger
					
				
			
			
				
	
			
			
			
						parent
						
							c7fbd6c64c
						
					
				
				
					commit
					338de4ffa1
				
			@@ -7,9 +7,9 @@ interface ITagProps {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const Tag = styled.div<ITagProps>`
 | 
					export const Tag = styled.div<ITagProps>`
 | 
				
			||||||
    background-color: ${isInverted => (isInverted ? colors.brandDark : 'rgba(0, 56, 49, 0.1)')};
 | 
					    background-color: ${({ isInverted }) => (isInverted ? colors.brandDark : colors.backgroundLight)};
 | 
				
			||||||
 | 
					    color: ${({ isInverted }) => (isInverted ? colors.white : colors.brandDark)};
 | 
				
			||||||
    border-radius: 4px;
 | 
					    border-radius: 4px;
 | 
				
			||||||
    color: ${isInverted => (isInverted ? colors.white : colors.brandDark)};
 | 
					 | 
				
			||||||
    font-size: 0.666666667rem;
 | 
					    font-size: 0.666666667rem;
 | 
				
			||||||
    font-family: 'Formular Mono';
 | 
					    font-family: 'Formular Mono';
 | 
				
			||||||
    font-weight: 400;
 | 
					    font-weight: 400;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user