mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-02 02:10:27 +00:00
25 lines
417 B
TypeScript
25 lines
417 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const Pre = styled.pre`
|
|
text-align: left;
|
|
margin: 1em 0;
|
|
padding: 0.5em;
|
|
overflow: scroll;
|
|
`;
|
|
|
|
export const Line = styled.div`
|
|
display: table-row;
|
|
`;
|
|
|
|
export const LineNo = styled.span`
|
|
display: table-cell;
|
|
text-align: right;
|
|
padding-right: 1em;
|
|
user-select: none;
|
|
opacity: 0.5;
|
|
`;
|
|
|
|
export const LineContent = styled.span`
|
|
display: table-cell;
|
|
`;
|