Fix card headers alignment in on-demand scans form

parent 720bd35b
...@@ -42,8 +42,8 @@ export default { ...@@ -42,8 +42,8 @@ export default {
<gl-card> <gl-card>
<template #header> <template #header>
<div class="row"> <div class="row">
<div class="col-7"> <div class="col-7 gl-display-flex gl-align-items-center">
<h3 class="gl-font-lg gl-display-inline"> <h3 class="gl-font-lg gl-my-0">
<slot name="title"></slot> <slot name="title"></slot>
</h3> </h3>
</div> </div>
......
---
title: Fix on-demand scans profile selectors' title alignment
merge_request: 51133
author:
type: fixed
...@@ -13,10 +13,10 @@ exports[`OnDemandScansScannerProfileSelector renders properly with profiles 1`] ...@@ -13,10 +13,10 @@ exports[`OnDemandScansScannerProfileSelector renders properly with profiles 1`]
class="row" class="row"
> >
<div <div
class="col-7" class="col-7 gl-display-flex gl-align-items-center"
> >
<h3 <h3
class="gl-font-lg gl-display-inline" class="gl-font-lg gl-my-0"
> >
Scanner profile Scanner profile
</h3> </h3>
...@@ -218,10 +218,10 @@ exports[`OnDemandScansScannerProfileSelector renders properly without profiles 1 ...@@ -218,10 +218,10 @@ exports[`OnDemandScansScannerProfileSelector renders properly without profiles 1
class="row" class="row"
> >
<div <div
class="col-7" class="col-7 gl-display-flex gl-align-items-center"
> >
<h3 <h3
class="gl-font-lg gl-display-inline" class="gl-font-lg gl-my-0"
> >
Scanner profile Scanner profile
</h3> </h3>
......
...@@ -13,10 +13,10 @@ exports[`OnDemandScansSiteProfileSelector renders properly with profiles 1`] = ` ...@@ -13,10 +13,10 @@ exports[`OnDemandScansSiteProfileSelector renders properly with profiles 1`] = `
class="row" class="row"
> >
<div <div
class="col-7" class="col-7 gl-display-flex gl-align-items-center"
> >
<h3 <h3
class="gl-font-lg gl-display-inline" class="gl-font-lg gl-my-0"
> >
Site profile Site profile
</h3> </h3>
...@@ -218,10 +218,10 @@ exports[`OnDemandScansSiteProfileSelector renders properly without profiles 1`] ...@@ -218,10 +218,10 @@ exports[`OnDemandScansSiteProfileSelector renders properly without profiles 1`]
class="row" class="row"
> >
<div <div
class="col-7" class="col-7 gl-display-flex gl-align-items-center"
> >
<h3 <h3
class="gl-font-lg gl-display-inline" class="gl-font-lg gl-my-0"
> >
Site profile Site profile
</h3> </h3>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment