fix: minor website styling fixes (#14952)
* fix: move utility classes from page header wrapper so that css is overridable in user stylesheets * fix(website-theme): obey button rounded corners setting - set border radius values to 0 Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com>
This commit is contained in:
parent
1e33f38353
commit
ead05f062d
3 changed files with 14 additions and 1 deletions
|
|
@ -99,6 +99,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
.page-header-wrapper {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.breadcrumb-container {
|
||||
margin-top: 1rem;
|
||||
padding-top: 0.25rem;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
{% block page_container %}
|
||||
<main class="{% if not full_width %}container my-4{% endif %}">
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<div class="page-header-wrapper">
|
||||
<div class="page-header">
|
||||
{% block header %}{% endblock %}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -43,5 +43,12 @@ body {
|
|||
--text-color: #{$body-text-color};
|
||||
--text-light: #{$body-text-color};
|
||||
{% endif -%}
|
||||
{% if not button_rounded_corners %}
|
||||
--border-radius-sm: 0px;
|
||||
--border-radius: 0px;
|
||||
--border-radius-md: 0px;
|
||||
--border-radius-lg: 0px;
|
||||
--border-radius-full: 0px;
|
||||
{% endif -%}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue