mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-03 08:22:18 +02:00
Implemented PR feedback
This commit is contained in:
parent
be5dd260b2
commit
377f15f9c0
6 changed files with 14 additions and 5 deletions
|
@ -1,6 +1,10 @@
|
|||
@use "uswds-core" as *;
|
||||
@use "cisa_colors" as *;
|
||||
|
||||
:root {
|
||||
--widescreen-max-width: 1920px;
|
||||
}
|
||||
|
||||
/* Styles for making visible to screen reader / AT users only. */
|
||||
.sr-only {
|
||||
@include sr-only;
|
||||
|
@ -201,8 +205,9 @@ abbr[title] {
|
|||
}
|
||||
|
||||
.usa-banner__inner--widescreen {
|
||||
max-width: 1920px;
|
||||
max-width: var(--widescreen-max-width);
|
||||
}
|
||||
|
||||
.margin-right-neg-4px {
|
||||
margin-right: -4px;
|
||||
}
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
|
||||
.grid-container--widescreen,
|
||||
.usa-identifier__container--widescreen {
|
||||
max-width: 1920px !important;
|
||||
max-width: var(--widescreen-max-width) !important;
|
||||
}
|
||||
|
|
|
@ -119,3 +119,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.usa-nav__inner--widescreen,
|
||||
.usa-navbar--widescreen {
|
||||
max-width: var(--widescreen-max-width) !important;
|
||||
}
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
|
||||
.usa-nav__inner--widescreen,
|
||||
.usa-navbar--widescreen {
|
||||
max-width: 1920px !important;
|
||||
max-width: var(--widescreen-max-width) !important;
|
||||
}
|
|
@ -24,7 +24,6 @@
|
|||
@forward "header";
|
||||
@forward "register-form";
|
||||
@forward "containers";
|
||||
@forward "navigation";
|
||||
|
||||
/*--------------------------------------------------
|
||||
--- Admin ---------------------------------*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div id="wrapper" class="{% block wrapper_class %}dashboard--portfolio{% endblock %}">
|
||||
{% block content %}
|
||||
|
||||
<main id="main-content" class="grid-container {% if is_widescreen_mode %} grid-container--widescreen {% endif %}">
|
||||
<main class="grid-container {% if is_widescreen_mode %} grid-container--widescreen {% endif %}">
|
||||
{% if user.is_authenticated %}
|
||||
{# the entire logged in page goes here #}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue