Commit 5fe31be5 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'on-demand-scans-profile-selectors-alignment' into 'master'

Fix card headers alignment in on-demand scans form

See merge request gitlab-org/gitlab!51133
parents 73258df9 756e1a55
......@@ -42,8 +42,8 @@ export default {
<gl-card>
<template #header>
<div class="row">
<div class="col-7">
<h3 class="gl-font-lg gl-display-inline">
<div class="col-7 gl-display-flex gl-align-items-center">
<h3 class="gl-font-lg gl-my-0">
<slot name="title"></slot>
</h3>
</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`]
class="row"
>
<div
class="col-7"
class="col-7 gl-display-flex gl-align-items-center"
>
<h3
class="gl-font-lg gl-display-inline"
class="gl-font-lg gl-my-0"
>
Scanner profile
</h3>
......@@ -218,10 +218,10 @@ exports[`OnDemandScansScannerProfileSelector renders properly without profiles 1
class="row"
>
<div
class="col-7"
class="col-7 gl-display-flex gl-align-items-center"
>
<h3
class="gl-font-lg gl-display-inline"
class="gl-font-lg gl-my-0"
>
Scanner profile
</h3>
......
......@@ -13,10 +13,10 @@ exports[`OnDemandScansSiteProfileSelector renders properly with profiles 1`] = `
class="row"
>
<div
class="col-7"
class="col-7 gl-display-flex gl-align-items-center"
>
<h3
class="gl-font-lg gl-display-inline"
class="gl-font-lg gl-my-0"
>
Site profile
</h3>
......@@ -218,10 +218,10 @@ exports[`OnDemandScansSiteProfileSelector renders properly without profiles 1`]
class="row"
>
<div
class="col-7"
class="col-7 gl-display-flex gl-align-items-center"
>
<h3
class="gl-font-lg gl-display-inline"
class="gl-font-lg gl-my-0"
>
Site profile
</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