如何使导航中的下划线与a
元素一样长,而不是li
元素?
答案 0 :(得分:0)
正如Drew所指出的那样,默认的Bootstrap填充。这修好了它:
#!/bin/bash
set -eo pipefail
refname="$0"
oldrev="$1"
newrev="$2"
echo "Enforcing Policies..."
# Iterate over all the commits
for commit in $(git rev-list 538c33..d14fc7); do
git cat-file commit "${commit}" | sed '1,/^$/d' | your-validator
done