Skip to content

Commit

Permalink
Fixed sizing for editor
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Nov 14, 2022
1 parent 6320bbb commit c79ddc2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const OidcSourceEditor = defaultsDeep({
classNames: 'bg-light border rounded px-4 pt-4 mb-4',
sizes: {
xs: 12,
lg: 6
xxl: 9
},
fields: [
'protocolSupportEnum',
Expand Down
28 changes: 11 additions & 17 deletions ui/src/app/metadata/domain/source/definition/SourceDefinition.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ export const SourceBase = {
groups: [
{
sizes: {
xs: 12,
lg: 6,
xl: 6
xs: 12
},
fields: [
'protocol',
Expand All @@ -106,7 +104,7 @@ export const SourceBase = {
},
{
sizes: {
lg: 6
xs: 6
},
fields: [
'contacts'
Expand All @@ -131,7 +129,7 @@ export const SourceBase = {
{
sizes: {
xs: 12,
lg: 6
xxl: 8
},
fields: [
'logoutEndpoints'
Expand All @@ -147,26 +145,23 @@ export const SourceBase = {
},
{
sizes: {
xs: 12,
lg: 6
xs: 12
},
fields: [
'assertionConsumerServices'
],
},
{
sizes: {
xs: 12,
lg: 8
xs: 12
},
fields: [
'relyingPartyOverrides'
],
},
{
sizes: {
xs: 12,
lg: 6
xs: 12
},
fields: [
'attributeRelease'
Expand Down Expand Up @@ -238,7 +233,7 @@ export const SourceBase = {
{
sizes: {
xs: 12,
lg: 6
xxl: 8
},
fields: [
'authenticationRequestsSigned',
Expand Down Expand Up @@ -409,7 +404,8 @@ export const SourceWizard = {
{
sizes: {
xs: 12,
lg: 6
lg: 6,
xxl: 6
},
classNames: 'bg-light border rounded px-4 pt-4 pb-3',
fields: [
Expand All @@ -419,7 +415,8 @@ export const SourceWizard = {
{
sizes: {
xs: 12,
lg: 6
lg: 6,
xxl: 6
},
fields: [
'contacts'
Expand All @@ -436,9 +433,6 @@ export const SourceWizard = {
{
sizes: {
xs: 12,
lg: 12,
xl: 8,
xxl: 6,
},
fields: [
'serviceProviderSsoDescriptor'
Expand Down

0 comments on commit c79ddc2

Please sign in to comment.