mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
57 lines
1.0 KiB
SCSS
57 lines
1.0 KiB
SCSS
@use "../../../styles/variables";
|
|
|
|
.content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.favicon {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: variables.$radiusMd;
|
|
flex-shrink: 0;
|
|
background: variables.$greyWhite;
|
|
object-fit: cover;
|
|
border: 1px solid variables.$border;
|
|
}
|
|
|
|
.faviconPlaceholder {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: variables.$radiusMd;
|
|
background: linear-gradient(135deg, variables.$primary 0%, #8b5cf6 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: variables.$white;
|
|
font-size: 18px;
|
|
font-weight: variables.$bold;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.details {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.title {
|
|
font-size: 14px;
|
|
font-weight: variables.$semibold;
|
|
color: variables.$black;
|
|
margin-bottom: 4px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.url {
|
|
font-size: 12px;
|
|
color: variables.$skyBlue;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|