mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
28 lines
473 B
TypeScript
28 lines
473 B
TypeScript
import styled from "styled-components";
|
|
|
|
const StyledFileEntry = styled.li`
|
|
figure {
|
|
border: 1px solid transparent;
|
|
display: flex;
|
|
height: 36px;
|
|
padding-bottom: 1px;
|
|
place-items: center;
|
|
|
|
&:hover {
|
|
background-color: hsla(0, 0%, 35%, 70%);
|
|
border: 1px solid hsla(0, 0%, 45%, 70%);
|
|
}
|
|
|
|
img {
|
|
margin-left: 3px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
figcaption {
|
|
color: #fff;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledFileEntry;
|