mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 14:35:03 +00:00
feat: improved ux for filepath display
This commit is contained in:
@@ -5,16 +5,32 @@ const StyledWrapper = styled.div`
|
||||
background: ${(props) => props.theme.requestTabPanel.url.bg};
|
||||
border-radius: 4px;
|
||||
padding: 8px 12px;
|
||||
|
||||
.filename {
|
||||
color: ${(props) => props.theme.brand};
|
||||
font-weight: 500;
|
||||
min-height: 1.25rem;
|
||||
font-size: 0.8125rem;
|
||||
border: 1px solid rgba(0, 0, 0, 0.08);
|
||||
|
||||
.icon-column {
|
||||
padding-right: 8px;
|
||||
align-items: flex-start;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.file-extension {
|
||||
.path-container {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.path-segment {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
.filename, .file-extension {
|
||||
color: ${(props) => props.theme.colors.text.yellow};
|
||||
}
|
||||
|
||||
.separator {
|
||||
color: ${(props) => props.theme.text};
|
||||
opacity: 0.5;
|
||||
opacity: 0.6;
|
||||
margin: 0 1px;
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user