import styled, { keyframes } from 'styled-components' const fadeIn = keyframes` 0% { opacity: 0; transform: translateY(-3px); } 100% { transform: none; opacity: 1; } ` export const DiagnosticsContainer = styled.div` padding: 20px; margin: 20px auto; flex-direction: column; row-gap: 4px; animation: ${fadeIn} 0.4s ease-out; display: flex; overflow: hidden; ` export const SettingsHeader = styled.h1` margin: 0 0 5px 10px; font-size: 1.5em; font-weight: 300; letter-spacing: normal; ` export const SettingsContainer = styled.div` padding: 0 10px; margin-bottom: 20px; border-radius: 15px; background-color: #eaeaea; flex-direction: column; ` export const SettingsRow = styled.div` border-radius: 15px; display: flex; padding: 8px 4px; &:not(:last-child) { border-bottom: 1px #e2e2e2 solid; } ` export const IntegrationName = styled.span`` export const SettingName = styled.span` min-width: 100px; ` export const SettingValue = styled.span` font-family: 'Courier New', Courier, monospace; ` export const IntegrationValue = styled(SettingValue)`` export const IntegrationRow = styled(SettingsRow)` justify-content: space-between; `