fix: padrão de links
This commit is contained in:
parent
603698c9c0
commit
2a6e5fb2e9
@ -232,6 +232,7 @@
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
}
|
||||
|
||||
.expanded-description {
|
||||
@ -240,6 +241,27 @@
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 0.75rem;
|
||||
|
||||
max-height: 150px; /* Ajuste conforme necessário */
|
||||
overflow-y: auto;
|
||||
padding-right: 0.5rem; /* Espaço para a scrollbar */
|
||||
|
||||
/* Styling da scrollbar (opcional) */
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: var(--primary-color) transparent;
|
||||
}
|
||||
|
||||
.expanded-description::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
.expanded-description::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.expanded-description::-webkit-scrollbar-thumb {
|
||||
background-color: var(--primary-color);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.expanded-price {
|
||||
|
||||
@ -13,7 +13,6 @@
|
||||
<style>
|
||||
@{
|
||||
var partialOutput = await Html.PartialAsync("_ThemeStyles", Model.Theme);
|
||||
|
||||
using (var writer = new System.IO.StringWriter())
|
||||
{
|
||||
partialOutput.WriteTo(writer, HtmlEncoder);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user