Skip to content

Commit 98f5bd2

Browse files
committed
🚧 Fix css
1 parent 72f1738 commit 98f5bd2

File tree

7 files changed

+31
-26
lines changed

7 files changed

+31
-26
lines changed

β€Žsrc/openorganisatie/scss/_app.scssβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ h2,
33
h3,
44
h4,
55
h5 {
6-
margin-top: 0;
7-
margin-bottom: 0;
8-
line-height: 1.2;
6+
line-height: 1.5;
97
}
108

119
h1 {

β€Žsrc/openorganisatie/scss/_settings.scssβ€Ž

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,28 @@ $color-border: $color_secondary_dark;
2323

2424
// css vars
2525
:root {
26-
--color_primary: #{$color_primary};
27-
--color_primary_dark: #{$color_primary_dark};
28-
29-
--color_secondary: #{$color_secondary};
30-
--color_secondary_dark: #{$color_secondary_dark};
31-
--color_secondary_light: #{$color_secondary_light};
32-
33-
--color_alert: #{$color_alert};
34-
--color_alert_dark: #{$color_alert_dark};
35-
36-
--color-darkest: #{$color-darkest};
37-
--color_dark: #{$color_dark};
38-
--color_lightest: #{$color_lightest};
39-
--color_muted: #{$color_muted};
40-
41-
--color_link: #{$color_link};
42-
--color_link_hover: #{$color_link_hover};
43-
--color-text: #{$color-text};
44-
--color-border: #{$color-border};
26+
// Link component
27+
--link-color: #017092;
28+
--link-color-hover: var(--link-color);
29+
--link-color-muted: #6c757d;
30+
31+
// footer component
32+
--footer-border-color: #dee2e6;
33+
34+
// tabs component
35+
--tabs-border-color: #dee2e6;
36+
--tabs-item-hover-border-color: #f3f3f3;
37+
38+
// Button component
39+
--button-color: #ffffff;
40+
--button-background-color: #04a5bb;
41+
--button-hover-background-color: #017092;
42+
--button-alert-background-color: #dc3545;
43+
--button-alert-hover-background-color: #bd2130;
44+
}
45+
46+
.content {
47+
&#{&}--align-right {
48+
text-align: right;
49+
}
4550
}

β€Žsrc/openorganisatie/scss/screen.scssβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "vendor";
2+
13
@import 'settings';
24
@import 'app';
35
@import 'components';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@use "@fortawesome/fontawesome-free/scss/fontawesome";
2+
@use "@fortawesome/fontawesome-free/scss/solid";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@use "fa";

β€Žsrc/openorganisatie/templates/index.htmlβ€Ž

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@
4242

4343

4444
{% block api_links %}
45-
{% url "schema-redoc-producten" as api_docs_producten %}
46-
{% url "schema-redoc-producttypen" as api_docs_producttypen %}
47-
4845
<a href="{% url 'identiteit_api:schema-redoc-identiteit' %}" class="button">
4946
<i class="fas fa-file-alt"></i>
5047
{% trans "Identiteit API specification" %}

β€Žsrc/openorganisatie/templates/master.htmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
{% include "includes/footer.html" %}
2727
{% block scripts %}
28-
<script src="{% static 'bundles/openproduct-js.js' %}" type="text/javascript"></script>
28+
<script src="{% static 'bundles/openorganisatie-js.js' %}" type="text/javascript"></script>
2929
{% endblock scripts %}
3030
</body>
3131
</html>

0 commit comments

Comments
Β (0)