mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const SlugContainer = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
padding: 5px;
|
|
`;
|
|
|
|
export const SlugName = styled.div`
|
|
padding: 0 10px;
|
|
position: relative;
|
|
top: -1px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
`;
|