* fix: Focus ring appearing on click fix: Focus ring not appearing on sidebar links add: focus-visible polyfill * fix: More visible outlines on keyboard focus fix: Header block should be a button semantically
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
|
|
const TeamLogo = styled.img`
|
|
width: auto;
|
|
height: 38px;
|
|
border-radius: 4px;
|
|
background: ${(props) => props.theme.background};
|
|
outline: 1px solid ${(props) => props.theme.divider};
|
|
`;
|
|
|
|
export default TeamLogo;
|